-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (62 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
67 lines (62 loc) · 1.5 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
[build-system]
requires = ["setuptools >= 61.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "tro-utils"
authors = [
{name = "Kacper Kowalik", email = "xarthisius.kk@gmail.com"},
{name = "Craig Willis", email = "willis8@illinois.edu"},
]
maintainers = [
{name = "Kacper Kowalik", email = "xarthisius.kk@gmail.com"},
]
description = "Utilities for creating, editing and interacting with TROs"
readme = "README.rst"
dynamic = ["version"]
dependencies = [
"Click>=7.0",
"jinja2",
"requests",
"packaging",
"python-gnupg",
"python-magic",
"rfc3161ng",
"graphviz",
"rich",
]
requires-python = ">= 3.10"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.scripts]
tro-utils = "tro_utils.cli:cli"
[project.optional-dependencies]
test = [
"pytest>=6.2.4",
"pytest-cov>=7.0.0",
"coverage>=7.0",
]
dev = [
"pytest>=6.2.4",
"pytest-cov>=7.0.0",
"coverage>=7.0",
"setuptools-scm",
"wheel>=0.33.6",
"watchdog>=0.9.0",
"flake8>=3.7.8",
"tox>=3.14.0",
"Sphinx>=1.8.5",
"twine>=1.14.0",
]
[tool.setuptools.package-data]
tro_utils = ["*.jinja2"]
[tool.setuptools_scm]
write_to = "tro_utils/_version.py"