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 os
|
||||
|
||||
with open(os.path.join(os.path.dirname(__file__),'damask/VERSION')) as f:
|
||||
version = f.readline()[1:-1]
|
||||
|
||||
setuptools.setup(
|
||||
name="damask",
|
||||
version="0.0.1",
|
||||
version=version,
|
||||
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",
|
||||
#long_description_content_type="text/markdown",
|
||||
url="https://damask.mpie.de",
|
||||
packages=setuptools.find_packages(),
|
||||
include_package_data=True,
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: GLPv3",
|
||||
|
|
Loading…
Reference in New Issue