-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 772 Bytes
/
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
import setuptools
setuptools.setup(
name="planarfiberdist",
version="0.0.2",
author="Julian Karl Bauer",
author_email="juliankarlbauer@gmx.de",
description="PlanarFiberDist "
"contains selected contributions of "
"Bauer JK, Böhlke T. "
"Mathematics and Mechanics of Solids. ????. "
"doi:????",
url="https://github.com/JulianKarlBauer/planar_fiber_orientation_tensors_2021",
packages=["planarfiberdist"],
package_dir={"planarfiberdist": "planarfiberdist"},
install_requires=[
"numpy",
"scipy",
"sympy",
"pandas",
"matplotlib", # Required for examples
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)