-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.25 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bcmc"
dynamic = ["version"]
description = "a CLI-centric broadcast and multicast validation tool"
readme = "README.md"
authors = [
{ name = "Josh Schmelzle", email = "[email protected]" },
{ name = "Kevin L. Marshall" },
]
maintainers = [
{ name = "Josh Schmelzle", email = "[email protected]" },
]
license = {text = "BSD-3-Clause"}
keywords = ["bcmc", "broadcast", "multicast"]
requires-python = ">=3.9"
classifiers = [
"Natural Language :: English",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Programming Language :: Python :: 3",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"Topic :: Utilities",
"Topic :: System :: Networking",
"Topic :: System :: Networking :: Monitoring",
"License :: OSI Approved :: BSD License",
]
[project.urls]
Homepage = "https://github.com/joshschmelzle/bcmc"
[project.scripts]
bcmc = "bcmc.__main__:main"
[tool.setuptools.packages.find]
include = ["bcmc"]
exclude = ["tests", "test"]
[tool.setuptools.dynamic]
version = {attr = "bcmc.__version__"}