-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ef06873
commit 6b9bbb9
Showing
2 changed files
with
40 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,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', | ||
version='0.2dev', | ||
packages=find_packages(), | ||
license=open('LICENSE', encoding="utf-8").read(), | ||
long_description=open('README.md', encoding="utf-8").read(), | ||
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/', | ||
}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters