-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·22 lines (20 loc) · 932 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name='lcc',
packages=find_packages(),
version='1.2.4',
description='Light Curves Classifier is package for classification stars by using their light curves and metadata',
author='Martin Vo',
author_email='[email protected]',
url='https://github.com/mavrix93/LightCurvesClassifier',
download_url='https://github.com/mavrix93/LightCurvesClassifier/archive/v1.0.0.tar.gz',
install_requires=["numpy", "scipy", "matplotlib", "pandas", "scikit-learn",
"kplr", "astroML", "astropy", "requests", "bs4", "pathos", "tqdm", "keras",
"redis", "rq"],
keywords=['light curves', 'machine-learning', 'astronomy', 'data-mining'],
entry_points={'console_scripts': ['lcc=lcc.cli.lcc:main']},
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6'],
)