forked from hipe4ml/hipe4ml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
115 lines (93 loc) · 4.3 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
108
109
110
111
112
113
114
115
"""Install this Python package.
"""
# pylint: disable=invalid-name
import re
import os.path
from setuptools import setup, find_packages
class Setup(object):
"""Convenience wrapper (for C.I. purposes) of the `setup()` call form `setuptools`.
"""
def __init__(self, **kw):
self.conf = kw
self.work_dir = os.path.abspath(os.path.dirname(__file__))
# Automatically fill `package_data` from `MANIFEST.in`. No need to repeat lists twice
assert "package_data" not in self.conf
assert "include_package_data" not in self.conf
package_data = {}
with open(os.path.join(self.work_dir, "MANIFEST.in")) as fp:
for line in fp.readlines():
line = line.strip()
m = re.search(r"include\s+(.+)/([^/]+)", line)
assert m
module = m.group(1).replace("/", ".")
fileName = m.group(2)
if module not in package_data:
package_data[module] = []
package_data[module].append(fileName)
if package_data:
self.conf["include_package_data"] = True
self.conf["package_data"] = package_data
# Automatically fill the long description from `README.md`. Filter out lines that look like
# "badges".
assert "long_description" not in self.conf
assert "long_description_content_type" not in self.conf
with open(os.path.join(self.work_dir, "README.md")) as fp:
ld = "\n".join([row for row in fp if not row.startswith("[![")])
self.conf["long_description"] = ld
self.conf["long_description_content_type"] = "text/markdown"
def __str__(self):
return str(self.conf)
def __call__(self):
setup(**self.conf)
SETUP = Setup(
name="hipe4ml",
# LAST-TAG is a placeholder. Automatically replaced at deploy time with the right tag
version="0.0.6",
description="Minimal heavy ion physics environment for Machine Learning",
url="https://github.com/hipe4ml/hipe4ml",
author="hipe4ml-developers",
author_email="hipe4ml@googlegroups.com",
license="GPL",
# See https://pypi.org/classifiers/
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
],
# What does your project relate to?
keywords="",
# You can just specify the packages manually here if your project is simple. Or you can use
# find_packages().
packages=find_packages(exclude=['tutorials']),
# List run-time dependencies here. These will be installed by pip when your project is
# installed. For an analysis of "install_requires" vs pip's requirements files see:
# https://packaging.python.org/en/latest/requirements.html
install_requires=["uproot>=3.11.1", "matplotlib>=3.1.2", "pandas>=0.25.3", "scikit-learn>=0.22.1",
"xgboost>=0.90,<1.0", "shap>=0.34", "bayesian-optimization>=1.0.1"],
python_requires=">=3.6",
# List additional groups of dependencies here (e.g. development dependencies). You can install
# these using the following syntax, for example:
# $ pip install -e .[dev,test]
extras_require={
"dev": ["pylint>=2.4.4", "flake8>=3.7.9", "pytest>=5.3.4", "twine>=1.11.0", "setuptools>=38.6.0",
"wheel>=0.31.0"]
},
# Although 'package_data' is the preferred approach, in some case you may need to place data
# files outside of your packages. See:
# http://docs.python.org/3.4/distutils/setupscript.html#installing-additional-files
data_files=[],
# To provide executable scripts, use entry points in preference to the "scripts" keyword. Entry
# points provide cross-platform support and allow pip to create the appropriate form of
# executable for the target platform. See:
# https://chriswarrick.com/blog/2014/09/15/python-apps-the-right-way-entry_points-and-scripts/
entry_points={
"console_scripts": ["hipe4ml = hipe4ml:entrypoint"]
}
)
if __name__ == "__main__":
SETUP()