-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
74 lines (68 loc) · 2 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
#!/usr/bin/env python
from setuptools import setup # type: ignore
from pathlib import Path
import re
def version() -> str:
"""
Get the version number from slurm_pipeline/__init__.py
"""
# Modified from http://stackoverflow.com/questions/2058802/
# how-can-i-get-the-version-defined-in-setup-py-setuptools-in-my-package
init = Path("slurm_pipeline", "__init__.py")
with open(init) as fp:
initData = fp.read()
match = re.search(r"^__version__ = ['\"]([^'\"]+)['\"]", initData, re.M)
if match:
return match.group(1)
else:
raise RuntimeError("Unable to find version string in %r." % init)
setup(
name="slurm-pipeline",
version=version(),
packages=["slurm_pipeline"],
include_package_data=True,
url="https://github.com/acorg/slurm-pipeline",
download_url="https://github.com/acorg/slurm-pipeline",
author="Terry Jones",
author_email="[email protected]",
keywords=["slurm", "sbatch"],
scripts=[
"bin/remove-repeated-headers.py",
"bin/sbatch.py",
"bin/slurm-pipeline.py",
"bin/slurm-pipeline-status.py",
"bin/slurm-pipeline-status-plot.py",
"bin/slurm-pipeline-version.py",
],
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=[
"pandas",
"plotly",
"pytest>=6.2.2",
"toml",
],
extras_require={
"dev": [
"flake8",
"pandas",
"pycodestyle",
"pytest",
"toml",
"toml-types",
],
"test": [
"pandas",
"pytest",
"toml",
],
},
license="MIT",
description="A Python class and utility script for scheduling SLURM jobs.",
)