diff --git a/README.md b/README.md new file mode 100644 index 0000000..9a66495 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Aero-Astro-Calc + +A small python library with functions to assist engineers. diff --git a/PlaneStress.py b/aero_astro_calc/PlaneStress.py similarity index 97% rename from PlaneStress.py rename to aero_astro_calc/PlaneStress.py index 870c7c2..8aa07c9 100644 --- a/PlaneStress.py +++ b/aero_astro_calc/PlaneStress.py @@ -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: diff --git a/aero_astro_calc/__init__.py b/aero_astro_calc/__init__.py new file mode 100644 index 0000000..ae6ac67 --- /dev/null +++ b/aero_astro_calc/__init__.py @@ -0,0 +1 @@ +from .PlaneStress import PlaneStress diff --git a/LatexLabel.py b/aero_astro_calc/dependencies/LatexLabel.py similarity index 100% rename from LatexLabel.py rename to aero_astro_calc/dependencies/LatexLabel.py diff --git a/aero_astro_calc/dependencies/__init__.py b/aero_astro_calc/dependencies/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..f652154 --- /dev/null +++ b/setup.py @@ -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", +)