mirror of
https://github.com/cosinekitty/astronomy.git
synced 2026-01-13 18:08:09 -05:00
The pip and npm astronomy-engine packages will have matching version numbers from now on, starting with 2.0.10. https://pypi.org/project/astronomy-engine/2.0.10/ https://www.npmjs.com/package/astronomy-engine
19 lines
585 B
Python
19 lines
585 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='astronomy-engine',
|
|
version='2.0.10',
|
|
description='Astronomy calculation for Sun, Moon, and planets.',
|
|
long_description=open('README.md').read(),
|
|
long_description_content_type='text/markdown',
|
|
author='Donald Cross',
|
|
author_email='cosinekitty@gmail.com',
|
|
url='https://github.com/cosinekitty/astronomy',
|
|
license=open('LICENSE').read(),
|
|
classifiers=[
|
|
"Intended Audience :: Science/Research",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3.7"
|
|
]
|
|
)
|