-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (20 loc) · 857 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 distutils.core import setup
import setuptools
setup(name='stam',
version='0.2.3',
author="Na'ama Hallakoun",
author_email='[email protected]',
description='Stellar-Track-based Assignment of Mass',
long_description=open('README.md').read(),
url='https://github.com/naamach/stam',
license='LICENSE.txt',
packages=setuptools.find_packages(),
install_requires=['astropy', 'configparser', 'numpy', 'scipy', 'tqdm', 'geomdl', 'matplotlib'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Astronomy']
)