-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 896 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='func_adl_uproot',
version='2.2.0',
description=(
'Functional Analysis Description Language'
+ ' uproot backend for accessing flat ROOT ntuples'
),
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(exclude=['tests']),
python_requires=('>=3.8, <3.14'),
install_requires=[
'awkward>=2.0.9',
'dask-awkward>=2023.8.1',
'func-adl>=3.2.7, !=3.3.1, !=3.3.2, !=3.3.3',
'numpy',
'qastle>=0.18.0',
'uproot>=5',
'vector>=1.1.0',
],
extras_require={'test': ['flake8', 'pytest', 'pytest-cov']},
author='Mason Proffitt',
author_email='[email protected]',
url='https://github.com/iris-hep/func_adl_uproot',
)