-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
76 lines (64 loc) · 2.1 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
"""Pip installation script."""
import os
import re
from setuptools import find_packages, setup
def get_version():
ver_file = 'matflow_damask/_version.py'
with open(ver_file) as handle:
ver_str_line = handle.read()
ver_pattern = r'^__version__ = [\'"]([^\'"]*)[\'"]'
match = re.search(ver_pattern, ver_str_line, re.M)
if match:
ver_str = match.group(1)
else:
msg = 'Unable to find version string in "{}"'.format(ver_file)
raise RuntimeError(msg)
return ver_str
def get_long_description():
readme_file = 'README.md'
with open(readme_file, encoding='utf-8') as handle:
contents = handle.read()
return contents
def get_changelog():
changelog_file = 'CHANGELOG.md'
with open(changelog_file, encoding='utf-8') as handle:
contents = handle.read()
return contents
setup(
author="Adam J. Plowman, Michael D. Atkinson, Guy L. P. Bowker",
author_email='[email protected]',
python_requires='>=3.6',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
description="Matflow extension for DAMASK.",
entry_points="""
[matflow.extension]
damask=matflow_damask
""",
install_requires=[
'matflow',
'vtk',
'damask',
'damask-parse',
],
license="MIT license",
long_description=get_long_description() + '\n\n' + get_changelog(),
long_description_content_type='text/markdown',
keywords='matflow, materials-science, computational-workflow',
name='matflow-damask',
packages=find_packages(),
project_urls={
'GitHub': 'https://github.com/LightForm-group/matflow-damask'
},
version=get_version(),
)