mirror of
https://github.com/cosinekitty/astronomy.git
synced 2026-01-07 06:59:14 -05:00
The pip package was broken! I violated ancient software development wisdom: "If you haven't tested it, it doesn't work." It is now working in: https://pypi.org/project/astronomy-engine/2.0.15/ Version 2.0.15 of Astronomy Engine for Python (pip) and Node.js (npm) add support for the new SiderealTime function. This was previously an internal function, but now it is exposed for outside callers.
20 lines
615 B
Python
20 lines
615 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='astronomy-engine',
|
|
version='2.0.15',
|
|
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']
|
|
)
|