-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
115 lines (103 loc) · 3.1 KB
/
pyproject.toml
File metadata and controls
115 lines (103 loc) · 3.1 KB
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
[build-system]
requires = ["hatchling>=1.13.0"]
build-backend = "hatchling.build"
[project]
name = "servicex-local"
description = "Enables a local backend for ServiceX"
readme = "README.md"
license = { text = "BSD-3-Clause" }
requires-python = ">=3.9"
authors = [{ name = "Gordon Watts", email = "gwatts@uw.edu" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"servicex>=3.0.0",
"servicex_analysis_utils>=1.2.0a0",
"tenacity",
"requests-toolbelt",
"click",
"make-it-sync",
"func_adl_servicex_xaodr21",
"func_adl_servicex_xaodr22",
"func_adl_servicex_xaodr25",
"func_adl_xAOD",
"deprecated",
"ipywidgets",
]
dynamic = ["version"]
docs = [
"sphinx>=7.0.1, <8.2.0",
"furo>=2023.5.20",
"sphinx-code-include>=1.4.0",
"myst-parser>=3.0.1",
"func-adl-servicex-xaodr22",
"autodoc-pydantic==2.2.0",
"sphinx-tabs>=3.4.5",
"sphinx-copybutton>=0.5.2",
"enum-tools[sphinx]>=0.12.0",
"sphinx-toolbox<4.1",
"sphinx-design"
]
[project.urls]
# Documentation = "https://servicex.readthedocs.io/"
"Homepage" = "https://github.com/gordonwatts/ServiceX-Local"
"Issue Tracker" = "https://github.com/gordonwatts/ServiceX-Local/issues"
"Release Notes" = "https://github.com/gordonwatts/ServiceX-Local/releases"
"Releases" = "https://github.com/gordonwatts/ServiceX-Local/releases"
"Source Code" = "https://github.com/gordonwatts/ServiceX-Local"
[tool.hatch.version]
path = "servicex_local/version.txt"
[project.optional-dependencies]
# Developer extras
test = [
"pytest>=7.2.0",
"pytest-mock>=3.10.0",
"pytest-cov>=4.0.0",
"pytest-console-scripts>=1.4.1",
"pytest-asyncio>=0.21.0",
"flake8>=5.0.4",
"func_adl_xAOD",
"black",
"pyfakefs",
]
docs = [
"sphinx>=7.0.1",
"furo>=2023.5.20",
"sphinx-code-include>=1.4.0",
"myst-parser>=3.0.1",
"autodoc-pydantic==2.2.0",
"sphinx-tabs>=3.4.5",
"sphinx-copybutton>=0.5.2",
]
xAOD = ["func_adl_xAOD"]
develop = ["servicex[test,docs,xAOD]"]
[project.scripts]
voms_proxy_init = "servicex_local.create_x509:main"
[tool.hatch.build.targets.sdist]
# hatchling always includes:
# pyproject.toml, .gitignore, any README, any LICENSE, AUTHORS
include = [
"/servicex_local/",
"/servicex_local/templates/transform_single_file.sh",
]
[tool.hatch.build.targets.wheel]
packages = ["servicex_local"]
include = ["/servicex_local/templates/transform_single_file.sh"]
[tool.coverage.run]
dynamic_context = "test_function"
[tool.flake8]
max-line-length = 99