forked from iris-hep/func_adl_servicex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (57 loc) · 1.83 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
# setuptools loads some plugins necessary for use here.
from setuptools import find_packages # noqa: F401
from distutils.core import setup
# Use the readme as the long description.
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name="func_adl_servicex",
version='1.0.0a1',
packages=['func_adl_servicex'],
scripts=[],
description="Submit Functional Queries to a ServiceX endpoint.",
long_description=long_description,
long_description_content_type="text/markdown",
author="G. Watts (IRIS-HEP/UW Seattle)",
author_email="[email protected]",
maintainer="Gordon Watts (IRIS-HEP/UW Seattle)",
maintainer_email="[email protected]",
url="https://github.com/iris-hep/func_adl_servicex",
license="TBD",
test_suite="tests",
install_requires=[
"func_adl>=1.1b10",
"qastle==0.8",
"servicex>=2.0"
],
extras_require={
'test': [
'pytest>=3.9',
'pytest-asyncio',
'pytest-mock',
'pytest-cov',
'coverage',
'flake8',
'codecov',
'autopep8',
'twine',
'testfixtures',
'wheel',
'asyncmock'
],
},
classifiers=[
# "Development Status :: 3 - Alpha",
"Development Status :: 4 - Beta",
# "Development Status :: 5 - Production/Stable",
# "Development Status :: 6 - Mature",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Utilities",
],
package_data={
'func_adl_xAOD/backend': ['R21Code/*'],
},
platforms="Any",
)