forked from scikit-hep/uproot5
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (27 loc) · 678 Bytes
/
Copy pathsetup.py
File metadata and controls
34 lines (27 loc) · 678 Bytes
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
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE
import os.path
from setuptools import setup
def get_version():
g = {}
with open(os.path.join("src", "uproot", "version.py")) as f:
exec(f.read(), g)
return g["__version__"]
extras = {
"dev": [
"awkward>=1.0.0",
"pandas",
"boost_histogram>=0.13",
"hist>=1.2",
],
"test": [
"pytest>=4.6",
"flake8",
"flake8-print",
"scikit-hep-testdata",
"lz4",
"xxhash",
"requests",
],
}
extras["all"] = sum(extras.values(), [])
setup(version=get_version(), extras_require=extras)