diff --git a/python/damask/LICENSE b/python/damask/LICENSE new file mode 120000 index 000000000..30cff7403 --- /dev/null +++ b/python/damask/LICENSE @@ -0,0 +1 @@ +../../LICENSE \ No newline at end of file diff --git a/python/damask/setup.py b/python/damask/setup.py new file mode 100644 index 000000000..f44738d38 --- /dev/null +++ b/python/damask/setup.py @@ -0,0 +1,18 @@ +import setuptools + +setuptools.setup( + name="xxx", + version="0.0.1", + author="The DAMASK team", + author_email="damask@mpie.de", + description="A small example package", + long_description='test', + long_description_content_type="text/markdown", + url="https://github.com/pypa/sampleproject", + packages=setuptools.find_packages(), + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: GLPv3", + "Operating System :: OS Independent", + ], +)