Files
astronomy/source/python/setup.py
Don Cross 6d6d6adb69 Version 2.1.18: Accepted PR #329.
Include TypeScript type definitions in the exported files.
This might be a fix for #294, but I'm not sure.
The only real way to test is to publish on npm and see what happens!
2023-12-13 16:00:30 -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.18',
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']
)