WIP: preparing for PIP package

This commit is contained in:
Martin Diehl 2019-04-26 19:08:10 +02:00
parent b4a21e8d40
commit 1b9355327a
2 changed files with 19 additions and 0 deletions

1
python/damask/LICENSE Symbolic link
View File

@ -0,0 +1 @@
../../LICENSE

18
python/damask/setup.py Normal file
View File

@ -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",
],
)