Files
astronomy/source/python/setup.py
Don Cross 7b7a306baf Python: Find rise/set/culm of user-defined stars.
Added Python support for user-defined stars.
Defined new StateVector methods: Position and Velocity.
Defined division operator: Vector / float.
Bumped version number to 2.1.12.
2022-11-22 21:42:02 -05:00

24 lines
701 B
Python

from setuptools import setup
def _LoadFile(filename):
with open(filename) as infile:
return infile.read()
setup(
name='astronomy-engine',
version='2.1.12',
description='Astronomy calculation for Sun, Moon, and planets.',
long_description=_LoadFile('README.md'),
long_description_content_type='text/markdown',
author='Donald Cross',
author_email='cosinekitty@gmail.com',
url='https://github.com/cosinekitty/astronomy',
license=_LoadFile('LICENSE'),
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7"
],
packages = ['astronomy']
)