1
0
mirror of https://gitlab.com/MisterBiggs/aero-astro-calc.git synced 2025-06-15 22:56:47 +00:00

packaged up

This commit is contained in:
Anson 2020-01-20 12:42:47 -07:00
parent bfe40e5e2c
commit 147e728c8c
6 changed files with 27 additions and 1 deletions

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# Aero-Astro-Calc
A small python library with functions to assist engineers.

View File

@ -3,7 +3,7 @@ from math import sqrt
from bokeh.models import Arrow
from bokeh.plotting import figure, output_file, show
from LatexLabel import LatexLabel
from aero_astro_calc.dependencies.LatexLabel import LatexLabel
class PlaneStress:

View File

@ -0,0 +1 @@
from .PlaneStress import PlaneStress

View File

22
setup.py Normal file
View File

@ -0,0 +1,22 @@
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="aero_astro_calc",
version="2019.1.3",
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",
)