Files
astronomy/source/python/setup.py
Don Cross b93719146b Set version numbers to 2.1.0.
In anticipation of releasing the Kotlin version,
I set the version numbers for the following to 2.1.0:

    Kotlin
    Node.js / npm
    Python / pip

The intention is to keep matching releases of
Astronomy Engine at a common version number.
2022-04-26 15:58:27 -04:00

20 lines
614 B
Python

from setuptools import setup
setup(
name='astronomy-engine',
version='2.1.0',
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"
],
packages = ['astronomy']
)