-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
52 lines (48 loc) · 1.32 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
from setuptools import setup
from setuptools.command.install import install
class InstallAndFetchDustMaps(install):
def run(self):
super().run()
from dustmaps import config, sfd
config.config.reset()
sfd.fetch()
setup(name='fleet-pipe',
version='1.0.0',
description='Finding Luminous and Exotic Extragalactic Transients',
url='https://github.com/gmzsebastian/FLEET',
author=['Sebastian Gomez'],
author_email="[email protected]",
license='GNU GPL 3.0',
packages=['FLEET'],
package_data={'FLEET': ['training_set/*.txt', 'classification_catalog.dat', 'GLADE_short.txt']},
include_package_data=True,
#cmdclass={'install': InstallAndFetchDustMaps},
install_requires=[
'numpy',
'astroquery',
'dustmaps',
'bs4',
'ephem',
'datetime',
'astral==1.10.1',
'PyAstronomy',
'scikit-learn',
'imbalanced-learn',
'Pillow',
'matplotlib',
'lmfit',
'alerce',
'ephem',
'extinction',
'pandas',
'python-dateutil',
'astropy',
'pathlib',
'requests',
'scipy',
'emcee',
'casjobs',
'mastcasjobs',
],
test_suite='nose.collector',
zip_safe = False)