-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
104 lines (91 loc) · 2.9 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[build-system]
requires = ["setuptools >= 61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vetr-summarizer"
version = "0.3.2"
description = "A Python package for visualizing ACI vetR JSON data"
authors = [{ name = "Osama Abbas", email = "[email protected]" }]
maintainers = [{ name = "Osama Abbas", email = "[email protected]" }]
license = { file = "LICENSE" }
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.9.0, <4"
keywords = [
"Cisco",
"ACI",
"automation",
"vetr-collector",
"devnet",
"datacenter",
"summarizer",
"JSON",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Topic :: System :: Networking :: Monitoring",
"Topic :: System :: Systems Administration",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
]
dependencies = ["jinja2>=3.0.0"]
[project.optional-dependencies]
dev = ["pre-commit", "bumpver", "black", "isort"]
[project.urls]
Homepage = "https://github.com/Tes3awy/vetr-summarizer"
Repository = "https://github.com/Tes3awy/vetr-summarizer"
Issues = "https://github.com/Tes3awy/vetr-summarizer/issues"
"Say Thanks!" = "https://saythanks.io/to/Tes3awy"
Changelog = "https://github.com/Tes3awy/vetr-summarizer/blob/main/CHANGELOG.md"
[tool.setuptools]
platforms = ["any"]
package-dir = { "" = "src" }
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"vetr_summarizer.templates" = ["base.j2", "vetr-data.j2"]
"vetr_summarizer.config" = ["excluded_keys"]
[tool.setuptools.data-files]
"vetr-summarizer" = [
"src/vetr_summarizer/templates/base.j2",
"src/vetr_summarizer/templates/vetr-data.j2",
"src/vetr_summarizer/config/excluded_keys",
]
[project.scripts]
vetr-summarizer = "vetr_summarizer.__main__:main"
[tool.bumpver]
current_version = "0.3.2"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = true
tag_message = "{new_version}"
tag_scope = "default"
[tool.bumpver.file_patterns]
"pyproject.toml" = ['^version = "{version}"', '^current_version = "{version}"']
"src/vetr_summarizer/__init__.py" = ['^__version__ = "{version}"$']
[tool.black]
exclude = '''
/(
\.git
| \.venv
| assets
| build
| dist
)/
'''
[tool.isort]
profile = "black"