-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 1.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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "fancyflags"
dynamic = ["version"]
description = "A Python library for defining structured command-line flags."
authors = [
{ name = "Google DeepMind" },
]
license = { text = "Apache License, Version 2.0" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = ["absl-py>=2.3.0"]
[dependency-groups]
test = ["absl-py==2.3.1", "pytest==8.4.1"]
[tool.setuptools.dynamic]
version = {attr = "fancyflags._metadata.__version__"}
[tool.setuptools]
packages = ["fancyflags"]
[project.urls]
Homepage = "https://github.com/google-deepmind/fancyflags"