-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
72 lines (58 loc) · 1.9 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
"""Pip installation script for `formable`."""
import os
import re
from setuptools import find_packages, setup
def get_version():
ver_file = '{}/_version.py'.format('formable')
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(
name='formable',
version=get_version(),
description=('Formability analysis in materials science.'),
long_description=get_long_description() + '\n\n' + get_changelog(),
long_description_content_type='text/markdown',
author='Adam J. Plowman',
author_email='[email protected]',
packages=find_packages(),
install_requires=[
'scipy',
'numpy',
'plotly',
'vecmaths',
'notebook>=5.3',
'ipywidgets>=7.5',
'scikit-image',
],
project_urls={
'Github': 'https://github.com/LightForm-group/formable',
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Operating System :: OS Independent',
],
)