-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 833 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
28
29
30
31
32
33
34
import setuptools
description = "Interpolation of fabric and fiber-orientation tensors"
setuptools.setup(
name="mechinterfabric",
version="1.0.0",
author="Julian Karl Bauer",
author_email="[email protected]",
description=description,
long_description=description,
url="https://github.com/JulianKarlBauer/mechinterfabric",
packages=setuptools.find_packages(),
install_requires=[
"setuptools",
"numpy",
"mechkit",
"scipy",
"vofotensors >= 1.0.7",
"natsort",
"sympy",
"matplotlib",
"pandas",
"natsort",
"plotly",
"kaleido",
],
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)