19 lines
521 B
Python
19 lines
521 B
Python
|
import setuptools
|
||
|
|
||
|
setuptools.setup(
|
||
|
name="damask",
|
||
|
version="0.0.1",
|
||
|
author="The DAMASK team",
|
||
|
author_email="damask@mpie.de",
|
||
|
description="Python library for DAMASK",
|
||
|
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",
|
||
|
],
|
||
|
)
|