mirror of
https://github.com/cosinekitty/astronomy.git
synced 2026-01-02 20:50:28 -05:00
I realized that the way I structured the pip package in version 2.0.15 made the private symbols (those whose names begin with an underscore) to be visible by the importer. I reworked the package structure so this no longer happens. This is now fixed in: https://pypi.org/project/astronomy-engine/2.0.16/
20 lines
615 B
Python
20 lines
615 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='astronomy-engine',
|
|
version='2.0.16',
|
|
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']
|
|
)
|