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:
parent
bfe40e5e2c
commit
147e728c8c
3
README.md
Normal file
3
README.md
Normal file
@ -0,0 +1,3 @@
|
||||
# Aero-Astro-Calc
|
||||
|
||||
A small python library with functions to assist engineers.
|
@ -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:
|
1
aero_astro_calc/__init__.py
Normal file
1
aero_astro_calc/__init__.py
Normal file
@ -0,0 +1 @@
|
||||
from .PlaneStress import PlaneStress
|
0
aero_astro_calc/dependencies/__init__.py
Normal file
0
aero_astro_calc/dependencies/__init__.py
Normal file
22
setup.py
Normal file
22
setup.py
Normal 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",
|
||||
)
|
Loading…
x
Reference in New Issue
Block a user