2019-04-26 22:38:10 +05:30
|
|
|
import setuptools
|
2019-04-27 00:24:58 +05:30
|
|
|
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",
|
2019-04-27 00:24:58 +05:30
|
|
|
version=version,
|
2019-04-26 22:38:10 +05:30
|
|
|
author="The DAMASK team",
|
|
|
|
author_email="damask@mpie.de",
|
2019-04-28 15:34:11 +05:30
|
|
|
description="DAMASK library",
|
|
|
|
long_description="Python library for pre and post processing of DAMASK simulations",
|
2019-04-27 00:24:58 +05:30
|
|
|
url="https://damask.mpie.de",
|
2019-04-26 22:38:10 +05:30
|
|
|
packages=setuptools.find_packages(),
|
2019-04-27 00:24:58 +05:30
|
|
|
include_package_data=True,
|
2019-04-28 15:34:11 +05:30
|
|
|
install_requires = [
|
|
|
|
"scipy",
|
|
|
|
"h5py",
|
|
|
|
"vtk"
|
|
|
|
],
|
|
|
|
license = 'GPL3',
|
|
|
|
classifiers = [
|
2019-04-26 22:38:10 +05:30
|
|
|
"Programming Language :: Python :: 3",
|
2019-04-28 15:34:11 +05:30
|
|
|
"License :: OSI Approved :: GPL3",
|
2019-04-26 22:38:10 +05:30
|
|
|
"Operating System :: OS Independent",
|
|
|
|
],
|
|
|
|
)
|