forked from leo27945875/Python_Stable_3D_Truss_Analysis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 1.06 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from setuptools import setup
VERSION = '2.0.3'
DESCRIPTION = '3D and 2D Truss structural analysis'
setup(
name="slientruss3d",
version=VERSION,
license="MIT",
author="Shih-Chi Cheng",
author_email="[email protected]",
description=DESCRIPTION,
url="https://github.com/leo27945875/Python_Stable_3D_Truss_Analysis",
download_url=f"https://github.com/leo27945875/Python_Stable_3D_Truss_Analysis/archive/refs/tags/v{VERSION}.tar.gz",
packages=['slientruss3d'],
install_requires=['numpy', 'matplotlib>=3.5.1'],
keywords=['python', 'truss', 'civil engineering', 'structural analysis'],
classifiers= [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Intended Audience :: Manufacturing",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9"
]
)