forked from riogroup/SORA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (41 loc) · 1.32 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
34
35
36
37
38
39
40
41
42
43
from setuptools import setup, find_packages
from os import path
# read the contents of README.rst
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='sora-astro',
packages=find_packages(),
version='0.2',
license='MIT',
description='Stellar Occultation Library',
long_description=long_description,
long_description_content_type='text/markdown',
author='SORA Team',
author_email='[email protected]',
url='https://github.com/riogroup/SORA',
keywords=['science', 'astronomy', 'occultation'],
install_requires=[
'numpy>=1.18',
'pyerfa>=2.0',
'astropy>=4.0',
'astroquery>=0.4.1',
'spiceypy>=3.0.2',
'matplotlib>=3.2',
'scipy>=1.4.1',
'requests',
],
python_requires=">=3.7, <4",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research ',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Astronomy',
],
project_urls={
'Bug Reports': 'https://github.com/riogroup/SORA/issues',
'Documentation': 'https://sora.readthedocs.io/',
},
)