-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 783 Bytes
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 783 Bytes
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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "evpn_agent"
dynamic = [
"version",
]
authors = [
{ name="Tore Anderson", email="tore@redpill-linpro.com" },
]
description = "OpenStack EVPN Agent"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: OpenStack",
"Framework :: Hatch",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: System :: Networking",
]
[project.urls]
Homepage = "https://github.com/toreanderson/evpn_agent"
Issues = "https://github.com/toreanderson/evpn_agent/issues"
[tool.hatch.version]
source = "vcs"