-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·41 lines (36 loc) · 1.11 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import os
import sys
try:
from setuptools import setup
setup
except ImportError:
from distutils.core import setup
setup
if sys.argv[-1] == "publish":
os.system("python setup.py sdist upload")
sys.exit()
setup(
name="qtip",
version='2015.11',
author="Rutger van Haasteren",
author_email="[email protected]",
packages=["qtip"],
url="http://github.com/vhaasteren/qtip/",
license="GPLv3",
description="Qt Interface for Pulsar timing",
long_description=open("README.md").read() + "\n\n"
+ "Changelog\n"
+ "---------\n\n"
+ open("HISTORY.md").read(),
package_data={"": ["LICENSE", "AUTHORS.md"]},
include_package_data=True,
install_requires=["numpy", "scipy", "h5py"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
)