-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
74 lines (71 loc) · 2.28 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
import re
import setuptools
import subprocess
import sys
try:
result = subprocess.run(
[sys.executable, "-m", "pip", "show", "pkg_utils"],
check=True, capture_output=True)
match = re.search(r'\nVersion: (.*?)\n', result.stdout.decode(), re.DOTALL)
assert match and tuple(match.group(1).split('.')) >= ('0', '0', '5')
except (subprocess.CalledProcessError, AssertionError):
subprocess.run(
[sys.executable, "-m", "pip", "install", "-U", "pkg_utils"],
check=True)
import os
import pkg_utils
name = 'biosimulations_bigg'
dirname = os.path.dirname(__file__)
package_data = {
name: [
os.path.join('source', 'LICENSE'),
os.path.join('final', '*.yml'),
],
}
# get package metadata
md = pkg_utils.get_package_metadata(dirname, name, package_data_filename_patterns=package_data)
# install package
setuptools.setup(
name='biosimulations-bigg',
version=md.version,
description=(
"Command-line program for publishing the BiGG model repository to BioSimulations."
),
long_description=md.long_description,
url="https://github.com/biosimulations/biosimulations-bigg",
download_url='https://github.com/biosimulations/biosimulations-bigg',
author='Center for Reproducible Biomedical Modeling',
author_email="info@biosimulations.org",
license="MIT",
keywords=[
'metabolism',
'biochemical network',
'cell biology',
'systems biology',
'computational biology',
'mathematical modeling',
'numerical simulation',
'flux balance analysis',
'FBA',
'Systems Biology Markup Language',
'SBML',
'BiGG',
],
packages=setuptools.find_packages(exclude=['tests', 'tests.*']),
package_data=md.package_data,
install_requires=md.install_requires,
extras_require=md.extras_require,
tests_require=md.tests_require,
dependency_links=md.dependency_links,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
entry_points={
'console_scripts': [
'biosimulations-bigg = biosimulations_bigg.__main__:main',
],
},
)