-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
71 lines (67 loc) · 1.73 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import setuptools
with open("README.rst","r",encoding="utf-8") as fh:
long_description = fh.read()
test_deps = [
"pytest",
"pytest-xdist",
"pytest-cov",
"pytest-subtests",
"snakeviz",
"vermin",
]
extras = {
"test": test_deps,
}
setuptools.setup(
name="pyhesive",
version="1.2",
author="Jacob Faibussowitsch",
author_email="[email protected]",
license="MIT",
description="Insert cohesive elements into any mesh",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://gitlab.com/Jfaibussowitsch/pyhesive",
packages=setuptools.find_packages(),
scripts=["bin/pyhesive-insert"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.2",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Topic :: Multimedia :: Graphics :: 3D Modeling",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
],
keywords=[
"mesh",
"meshing",
"scientific",
"engineering",
"library",
"fem",
"finite elements",
"fracture",
"fracture mechanics",
"cohesive elements",
"cohesive zone model",
],
install_requires=[
"numpy",
"scipy",
"meshio",
"pymetis",
],
python_requires=">=3.2",
tests_require=test_deps,
extras_require =extras,
test_suite="pyhesive.test"
)