Add files necessary for pip package upload

This commit is contained in:
Ebrahim Byagowi
2022-01-11 00:34:41 +03:30
parent 37c8aeafa9
commit f68c8766dd
4 changed files with 50 additions and 0 deletions

18
source/python/setup.py Normal file
View File

@@ -0,0 +1,18 @@
from setuptools import setup
setup(
name='astronomy-engine',
version='1.0.1',
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.5"
]
)