Skip to content

Commit d1b9375

Browse files
committed
First go at converting to pyproject.toml
1 parent 9021caa commit d1b9375

File tree

3 files changed

+58
-84
lines changed

3 files changed

+58
-84
lines changed

func_adl_xAOD/version.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = "0.0.1a1"

pyproject.toml

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
[build-system]
2+
requires = ["hatchling"]
3+
build-backend = "hatchling.build"
4+
5+
[project]
6+
name = "func_adl_xAOD"
7+
version = "0.0.0-alpha.10"
8+
description = "Functional Analysis Description Language backend for accessing ATLAS xAOD files."
9+
readme = "README.md"
10+
authors = [{ name = "G. Watts (IRIS-HEP/UW Seattle)", email = "[email protected]" }]
11+
maintainers = [
12+
{ name = "Gordon Watts (IRIS-HEP/UW Seattle)", email = "[email protected]" },
13+
]
14+
license = { text = "MIT" }
15+
requires-python = ">=3.9"
16+
classifiers = [
17+
"Development Status :: 5 - Production/Stable",
18+
"Intended Audience :: Developers",
19+
"Intended Audience :: Information Technology",
20+
"Programming Language :: Python",
21+
"Programming Language :: Python :: 3.12",
22+
"Programming Language :: Python :: 3.11",
23+
"Programming Language :: Python :: 3.10",
24+
"Programming Language :: Python :: 3.9",
25+
"Topic :: Software Development",
26+
"Topic :: Utilities",
27+
]
28+
dependencies = ["requests", "retry", "jinja2", "qastle", "func_adl>3.4"]
29+
30+
[project.optional-dependencies]
31+
test = [
32+
"pytest>=3.9",
33+
"pytest-asyncio",
34+
"pytest-mock",
35+
"pytest-cov",
36+
"coverage",
37+
"flake8",
38+
"autopep8",
39+
"twine",
40+
"testfixtures",
41+
"wheel",
42+
"asyncmock",
43+
"pandas",
44+
"uproot",
45+
"awkward",
46+
"black",
47+
]
48+
local = ["python-on-whales"]
49+
50+
[tool.hatch.version]
51+
path = "func_adl_xAOD/version.txt"
52+
53+
[tool.hatch.build.targets.sdist]
54+
include = ["README.md", "/func_adl_xAOD"]
55+
56+
[tool.hatch.build.targets.wheel]
57+
include = ["README.md", "/func_adl_xAOD"]

setup.py

Lines changed: 0 additions & 84 deletions
This file was deleted.

0 commit comments

Comments
 (0)