tools to build a python wheel distribution
This commit is contained in:
parent
20f647158f
commit
a5c620379b
|
@ -0,0 +1 @@
|
||||||
|
include damask/VERSION
|
|
@ -0,0 +1 @@
|
||||||
|
../../README
|
|
@ -1,15 +1,20 @@
|
||||||
import setuptools
|
import setuptools
|
||||||
|
import os
|
||||||
|
|
||||||
|
with open(os.path.join(os.path.dirname(__file__),'damask/VERSION')) as f:
|
||||||
|
version = f.readline()[1:-1]
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="damask",
|
name="damask",
|
||||||
version="0.0.1",
|
version=version,
|
||||||
author="The DAMASK team",
|
author="The DAMASK team",
|
||||||
author_email="damask@mpie.de",
|
author_email="damask@mpie.de",
|
||||||
description="Python library for DAMASK",
|
description="Python library for DAMASK",
|
||||||
long_description='test',
|
long_description='test',
|
||||||
long_description_content_type="text/markdown",
|
#long_description_content_type="text/markdown",
|
||||||
url="https://github.com/pypa/sampleproject",
|
url="https://damask.mpie.de",
|
||||||
packages=setuptools.find_packages(),
|
packages=setuptools.find_packages(),
|
||||||
|
include_package_data=True,
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"License :: OSI Approved :: GLPv3",
|
"License :: OSI Approved :: GLPv3",
|
||||||
|
|
Loading…
Reference in New Issue