forked from astro-transients/tilepy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (37 loc) · 1.12 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
#!/usr/bin/env python
from setuptools import setup, find_packages
def readfile(filename):
with open(filename, 'r+') as f:
return f.read()
setup(name='tilepy',
version='1.5.4',
description='Gravitational waves follow-up scheduling and simulation for IACTs',
install_requires=[
'astropy', #>=4.1',
'scipy', #',
'healpy', #==1.12.9',
'ipython', #',
'matplotlib', #==2.2.2',
'MOCpy', #==0.10.0',
'numpy', #==1.19.5',
'pandas',
'pytz', #==2021.1',
'ephem', #==3.7.6.0',
'gdpyc',
'tables',
'fastparquet',
'skyfield',
'ligo.skymap~=1.0.7',
],
packages=find_packages(),
# tests_require=['pytest'],
author='Monica Seglar-Arroyo ',
author_email='[email protected] ',
url='https://drf-gitlab.cea.fr/multimessenger-IRFU/cta/gw-follow-up-simulations',
long_description=readfile('README.md'),
include_package_data=True,
package_data={'': ['dataset/*.all']},
# license='',
classifiers=[],
scripts=[],
)