mirror of
https://github.com/cosinekitty/astronomy.git
synced 2026-01-05 05:57:49 -05:00
Generate astronomy.py directly in the package directory.
I realized it doesn't make sense to generate it in the
parent directory and then copy it; just generate it where
it will end up anyway.
Updated documentation so people know they can just do
pip install astronomy-engine
to install Astronomy Engine in their Python project.
Removed the GitHub Actions status badge because it is redundant with
the checkmark/X indicator.
Now that private symbols are no longer exported, I had to
fix a couple of places where the unit tests still accessed them.
20 lines
615 B
Python
20 lines
615 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='astronomy-engine',
|
|
version='2.0.17',
|
|
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']
|
|
)
|