-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
53 lines (49 loc) · 1.33 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
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import setup, find_packages
with open('fact/VERSION', 'r') as f:
__version__ = f.read().strip()
with open('README.rst') as f:
long_description = f.read()
setup(
name='pyfact',
version=__version__,
description='A module containing useful methods for working with fact',
long_description=long_description,
url='http://github.com/fact-project/pyfact',
author='Maximilian Noethe, Dominik Neise',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
package_data={
'': [
'VERSION',
'resources/*',
'credentials/credentials.encrypted',
]
},
entry_points={
'console_scripts': [
'fact_calculate_theta = fact.analysis.scripts.theta:main',
'fact_calculate_radec = fact.analysis.scripts.radec:main',
]
},
tests_require=['pytest>=3.0.0'],
setup_requires=['pytest-runner'],
install_requires=[
'astropy',
'click',
'h5py',
'matplotlib>=1.4',
'numpy',
'pandas',
'peewee>=3',
'pymysql',
'python-dateutil',
'scipy',
'setuptools',
'simple-crypt',
'sqlalchemy',
'tables>=3.3', # pytables in anaconda
'wrapt',
],
zip_safe=False,
)