-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
56 lines (49 loc) · 1.3 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
[project]
name = "kingpin"
description = "Deployment Automation Engine"
requires-python = ">=3.7"
license = {text = "Apache License, Version 2.0"}
authors = [{name = "Nextdoor Engineering"}]
maintainers = [{name = "Nextdoor Engineering"},]
keywords = [
"deployment",
"automation",
"kingpin",
"aws",
"nextdoor",
"cloudformation"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
]
dynamic = [
"version",
"readme",
"dependencies"
]
[project.urls]
Homepage = "https://nextdoor.com/"
Documentation = "https://kingpin.readthedocs.io/en/latest/"
Source = "https://github.com/Nextdoor/kingpin"
Changelog = "https://github.com/Nextdoor/kingpin/releases"
[project.scripts]
kingpin = "kingpin.bin.deploy:begin"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages]
find = {}
[tool.setuptools.dynamic]
version = {attr = "kingpin.version.__version__"}
dependencies = {file = ["requirements.txt"]}
readme = {file = ["README.rst"]}
[tool.coverage.run]
omit = ["**/test/*"]
[tool.coverage.report]
show_missing = true