Skip to content

Commit

Permalink
Finishing release of v0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
altairgomes committed Jun 14, 2021
1 parent ef06873 commit 6b9bbb9
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 6 deletions.
44 changes: 39 additions & 5 deletions setup.py
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/',
},
)
2 changes: 1 addition & 1 deletion sora/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
from .star import Star
from .occultation import Occultation

__version__ = '0.2dev'
__version__ = '0.2'

print(f'SORA version: {__version__}')

0 comments on commit 6b9bbb9

Please sign in to comment.