-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
37 lines (34 loc) · 1.09 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
import setuptools
from os import path
import sys
description = "Continuum mechanics toolkit"
if sys.version_info > (3, 0):
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
else:
long_description = description
setuptools.setup(
name="mechkit",
version="0.4.1",
author="Julian Karl Bauer",
author_email="JulianKarlBauer@gmx.de",
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/JulianKarlBauer/mechkit",
packages=setuptools.find_packages(),
install_requires=[
"setuptools",
"numpy",
"networkx; python_version > '2.7'",
"decorator == 4.3.0; python_version <= '2.7'",
"networkx == 2.2; python_version <= '2.7'",
"sympy; python_version > '3.6'",
],
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)