-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (38 loc) · 976 Bytes
/
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
from setuptools import find_packages, setup
from sdapy. __version__ import name, version, description, python_requires, author, author_email, url
setup(
name=name,
version=version,
description=description,
python_requires=python_requires,
url=url,
author=author,
author_email=author_email,
packages=find_packages(),
package_data={
'': [
'data/*.txt',
'data/**/*',
],
},
entry_points = {
'console_scripts' :
['sdapy_run = sdapy.snerun:main',
'sdapy_gui = sdapy.sneGui:main',],
},
install_requires=[
'astropy',
'numpy',
'pandas',
'scipy',
'joblib',
'matplotlib',
],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Astronomy',
],
zip_safe = False,
include_package_data=True
)