This repository was archived by the owner on Mar 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
80 lines (66 loc) · 2.13 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
77
78
79
80
"""Pip installation script for `hpcflow`."""
import os
import re
from setuptools import find_packages, setup
package_name = 'hpcflow'
def get_version():
ver_file = '{}/_version.py'.format(package_name)
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
package_data = [
os.path.join(*os.path.join(root, f).split(os.path.sep)[1:])
for root, dirs, files in os.walk(os.path.join(package_name, 'data'))
for f in files
]
setup(
name=package_name,
version=get_version(),
description=('Generate and submit jobscripts for an automated simulate, '
'process, archive workflow on high performance computing '
'(HPC) systems.'),
long_description=get_long_description(),
long_description_content_type='text/markdown',
author='Adam J. Plowman',
author_email='[email protected]',
packages=find_packages(),
package_data={
package_name: package_data,
},
install_requires=[
'click>7.0',
'ruamel.yaml',
'sqlalchemy>=1.4.0',
'dropbox==10.1.2', # fixed until we make compatible with v11
'six>1.11.0', # for dropbox
'beautifultable'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Operating System :: POSIX',
],
entry_points="""
[console_scripts]
{0}={0}.cli:cli
hfsub={0}.cli:submit
hfmake={0}.cli:make
hfstat={0}.cli:stat
hfkill={0}.cli:kill
""".format(package_name)
)