-
Martin Genet authoredMartin Genet authored
setup.py 901 B
import datetime
import os
import setuptools
# version = os.environ['CI_COMMIT_TAG']
version = datetime.date.today().strftime("%Y.%m.%d")
setuptools.setup(
name="dolfin_warp",
version=version,
author="Martin Genet",
author_email="martin.genet@polytechnique.edu",
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_warp",
packages=["dolfin_warp"],
license="GPLv3",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
install_requires=["dolfin_mech", "matplotlib", "meshio", "myPythonLibrary", "myVTKPythonLibrary", "numpy", "pandas", "scipy", "vtk", "vtkpython_cbl"],
)