-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (32 loc) · 1.4 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
from setuptools import setup, find_packages
setup(
name = 'cosmo_peewee',
version = '0.0.1',
description = 'COSMO using the peewee ORM language.',
author = 'Mees Fix',
author_email = '[email protected]',
keywords = ['astronomy'],
classifiers = ['Programming Language :: Python',
'Programming Language :: Python :: 3',
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Software Development :: Libraries :: Python Modules'],
packages = find_packages(),
requires = ['numpy', 'scipy', 'astropy', 'matplotlib'],
entry_points = {'console_scripts': ['cm_ingest=cosmo_peewee.database:ingest_all',
'cm_monitors=cosmo_peewee.database:run_monitors',
'drop_tables=cosmo_peewee.database:drop_tables'
],
},
install_requires = ['setuptools',
'numpy>=1.11.1',
'astropy>=1.0.1',
'peewee>=2.8.5',
'pymysql',
'matplotlib',
'scipy',
'psutil'
]
)