mirror of
https://github.com/cosinekitty/astronomy.git
synced 2026-01-15 02:49:54 -05:00
It turns out that "sed" does not work on Mac OS, and I wasn't even trying to patch the version numbers on Windows. I decided to write a Python program for this task, so it will work identically on all 3 operating systems.
20 lines
614 B
Python
20 lines
614 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='astronomy-engine',
|
|
version='2.1.2',
|
|
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']
|
|
)
|