-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (31 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
29
30
31
32
33
import setuptools
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setuptools.setup(
name="mechmean",
version="0.1.0",
author="Julian Karl Bauer",
author_email="juliankarlbauer@gmx.de",
description="Mechmean contains selected mean field methods"
" in the context of continuum mechanics"
" with special focus on orientation averaged homogenization",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/JulianKarlBauer/mechmean/",
packages=["mechmean"],
package_dir={"mechmean": "mechmean"},
install_requires=[
"numpy",
"scipy",
"mechkit>=0.2.6",
# "natsort",
],
# setup_requires=["pybind11>=2.3", "libcgal-dev", "libeigen3-dev"],
# extras_require={"test": ["pytest", "natsort"]},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)