-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
79 lines (71 loc) · 1.87 KB
/
pyproject.toml
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
79
### Build ###
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
include = ["nebari_workflow_controller"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "nebari_workflow_controller/_version.py"
local_scheme = "node-and-timestamp"
# [project.entry-points."setuptools_scm.version_scheme"]
# "calver-by-date" = "setuptools_scm.version:calver_by_date"
### Project ###
[project]
name = "nebari-workflow-controller"
dynamic = ["version"]
description = "An admission controller for argo workflows in Nebari"
readme = "README.md"
requires-python = ">=3.8"
license = "BSD-3-Clause"
authors = [
{ name = "Nebari development team", email = "[email protected]" }
]
keywords = [
"nebari",
"argo-workflows",
"kubernetes",
"fastapi",
"admission-controller",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
]
dependencies = [
"python-keycloak==2.15.3",
"fastapi==0.95.1",
"uvicorn==0.21.1",
"pydantic==1.10.7",
"jsonpatch==1.32",
"kubernetes==26.1.0",
]
[project.optional-dependencies]
dev = [
"black==22.3.0",
"flake8==3.8.4",
"pre-commit",
"pytest",
"pytest-mock",
"pyyaml",
"build",
]
[project.urls]
Documentation = "https://github.com/nebari-dev/nebari-workflow-controller"
Source = "https://github.com/nebari-dev/nebari-workflow-controller"
[tool.ruff]
ignore = [
"E501", # Line too long
"F821", # Undefined name
]
extend-exclude = [
"__pycache__"
]