-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
107 lines (84 loc) · 3.08 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# coding: utf-8
import os
import re
from setuptools import setup, find_packages
this_dir = os.path.dirname(os.path.abspath(__file__))
# package keyworkds
keywords = [
"luigi", "workflow", "pipeline", "remote", "gfal", "submission", "cluster", "grid", "condor",
"lsf", "glite", "arc", "sandboxing", "docker", "singularity",
]
# package classifiers
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Topic :: System :: Monitoring",
]
# helper to read non-empty, stripped lines from an opened file
def readlines(f):
for line in f.readlines():
if line.strip():
yield line.strip()
# read the readme file
with open(os.path.join(this_dir, "README.rst"), "r") as f:
long_description = f.read()
# load installation requirements
with open(os.path.join(this_dir, "requirements.txt"), "r") as f:
install_requires = list(readlines(f))
# load docs requirements
with open(os.path.join(this_dir, "requirements_docs.txt"), "r") as f:
docs_requires = [line for line in readlines(f) if line not in install_requires]
# load package infos
pkg = {}
with open(os.path.join(this_dir, "law", "__version__.py"), "r") as f:
exec(f.read(), pkg)
# install options
options = {}
# check for a custom executable for entry points
# note: when installing with pip, changing the executable in the shebang is only effective when
# running "pip install" with (e.g.) "--no-binary law" or "--no-binary :all:"
executable = os.getenv("LAW_INSTALL_EXECUTABLE", "")
if executable == "env":
executable = "/usr/bin/env python"
elif re.match(r"^python(|\d|\d\.\d|\d\.\d\.\d)$", executable):
executable = "/usr/bin/env " + executable
if executable:
options["build_scripts"] = {"executable": executable}
setup(
name="law",
version=pkg["__version__"],
author=pkg["__author__"],
author_email=pkg["__email__"],
description=pkg["__doc__"].strip().split("\n")[0].strip(),
license=pkg["__license__"],
url=pkg["__contact__"],
keywords=" ".join(keywords),
classifiers=classifiers,
long_description=long_description,
long_description_content_type="text/x-rst",
install_requires=install_requires,
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4'",
extras_require={
"docs": docs_requires,
},
zip_safe=False,
packages=find_packages(exclude=["tests"]),
include_package_data=True,
scripts=["bin/law"],
options=options,
)