-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (23 loc) · 868 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
import datetime
import os
import setuptools
# version = os.environ['CI_COMMIT_TAG']
version = datetime.date.today().strftime("%Y.%m.%d")
setuptools.setup(
name="dolfin_mech",
version=version,
author="Martin Genet",
author_email="[email protected]",
description=open("README.md", "r").readlines()[1][:-1],
long_description = open("README.md", "r").read(),
long_description_content_type="text/markdown",
url="https://gitlab.inria.fr/mgenet/dolfin_mech",
packages=["dolfin_mech"],
license="GPLv3",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
install_requires=["gmsh", "matplotlib", "meshio", "myPythonLibrary", "myVTKPythonLibrary", "numpy", "pandas", "vtk"],
)