DAMASK_EICMD/python/setup.py

24 lines
654 B
Python
Raw Normal View History

2019-04-26 22:38:10 +05:30
import setuptools
import os
with open(os.path.join(os.path.dirname(__file__),'damask/VERSION')) as f:
version = f.readline()[1:-1]
2019-04-26 22:38:10 +05:30
setuptools.setup(
2019-04-26 22:54:22 +05:30
name="damask",
version=version,
2019-04-26 22:38:10 +05:30
author="The DAMASK team",
author_email="damask@mpie.de",
2019-04-26 22:54:22 +05:30
description="Python library for DAMASK",
2019-04-26 22:38:10 +05:30
long_description='test',
#long_description_content_type="text/markdown",
url="https://damask.mpie.de",
2019-04-26 22:38:10 +05:30
packages=setuptools.find_packages(),
include_package_data=True,
2019-04-26 22:38:10 +05:30
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GLPv3",
"Operating System :: OS Independent",
],
)