1
0
mirror of https://gitlab.com/MisterBiggs/aero-astro-calc.git synced 2025-06-15 14:46:49 +00:00
Aero-Astro-Calc/setup.py
2020-01-20 17:13:24 -07:00

23 lines
695 B
Python

import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="aero_astro_calc",
version="2020.2.0",
author="Anson Biggs",
author_email="anson@ansonbiggs.com",
description="A small python library with functions to assist engineers.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://gitlab.com/MisterBiggs/aero-astro-calc",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
# python_requires=">=3.6",
)