-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (67 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
78 lines (67 loc) · 1.49 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
[build-system]
requires = ["setuptools>=77.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "total-perspective-vortex"
description = "A library for routing entities (jobs, users or groups) to destinations in Galaxy"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{name = "Galaxy Contributors"},
]
maintainers = [
{name = "Galaxy Committers", email = "galaxy-committers@lists.galaxyproject.org"}
]
version = "3.2.1"
dependencies = [
"pydantic>=2",
"cachetools>=3.1.0",
"types-cachetools",
"watchdog",
"requests",
"ruamel.yaml",
"mypy",
"jinja2",
"types-requests",
]
[project.optional-dependencies]
cli = [
# include base dependencies: https://github.com/pypa/pip/issues/10393
"total-perspective-vortex",
"galaxy"
]
test = [
"total-perspective-vortex[cli]",
"pytest",
"responses",
"tox>=2.9.1",
"coverage>=4.4.1",
]
dev = [
"total-perspective-vortex[test]",
"sphinx",
"sphinx_rtd_theme"
]
[project.scripts]
tpv = "tpv.commands.shell:main"
[project.urls]
Homepage = "https://github.com/galaxyproject/total-perspective-vortex"
Documentation = "https://total-perspective-vortex.readthedocs.io"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"tpv" = ["**/*.j2"]
[tool.coverage.run]
branch = true
source = ["tpv"]
relative_files = true
[tool.bdist_wheel]
universal = true
[tool.black]
line-length = 120
[tool.isort]
line_length = 120
profile = "black"
[tool.mypy]
strict = true