-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
47 lines (42 loc) · 1.42 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
[project]
name = "tna-utilities"
version = "1.4.0"
requires-python = ">=3.10"
authors = [
{name = "Andrew Hosgood", email = "andrew.hosgood@nationalarchives.gov.uk"},
]
description = "A library of common National Archives Python functions"
readme = "README.md"
license = "MIT"
license-files = ["LICENCE"]
keywords = ["utilities", "library", "python", "the national archives", "tna"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"requests"
]
[project.optional-dependencies]
flask = ["Flask"]
[project.urls]
Homepage = "https://pypi.org/project/tna-utilities/"
Documentation = "https://nationalarchives.github.io/python-utilities/"
Repository = "https://github.com/nationalarchives/python-utilities"
"Bug Tracker" = "https://github.com/nationalarchives/python-utilities/issues"
Changelog = "https://github.com/nationalarchives/python-utilities/blob/main/CHANGELOG.md"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
Flask = "^3"
requests = "^2"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"