-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
27 lines (26 loc) · 1 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
# coding=utf-8
import setuptools
setuptools.setup(name='zwad',
license_files = ('LICENSE',),
license='MIT',
packages=['zwad', 'zwad.ad'],
install_requires=[
'coniferest==0.0.13',
'pandas<2.0',
'click',
'pillow',
'scikit-learn>=0.23',
'seaborn',
'tqdm',
'matplotlib>=3.1,<4.0',
'astropy',
'requests>=2,<3.0',
],
entry_points={
'console_scripts': [
'zwaad = zwad.aad:execute_from_commandline',
'zwadp = zwad.ad:ZtfAnomalyDetector.script',
'zwann = zwad.nn:execute_from_commandline',
'zwad-zenodo = zwad.download_feature_set:execute_from_commandline',
]
})