-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (39 loc) · 1.53 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
[project]
name = "NetFuse"
dynamic = ["version"]
description = "Python module to dump hostname and IP address mapping for localhost into host file."
readme = "README.md"
authors = [{ name = "Vignesh Rao", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Networking :: Firewalls",
"Topic :: System :: Networking :: Monitoring"
]
keywords = ["localhost", "network-synchronization", "NetFuse"]
requires-python = ">=3.8"
dependencies = ["click>=8.1.7"]
[tool.setuptools]
packages = ["netfuse", "netfuse.modules"]
[tool.setuptools.dynamic]
version = {attr = "netfuse.version"}
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
dev = ["sphinx==5.1.1", "pre-commit", "recommonmark", "gitverse"]
att = ["pandas==2.2.2", "lxml==5.3.0", "requests>=2.32.3"]
netgear = ["pynetgear==0.10.10"]
[project.scripts]
netfuse = "netfuse.main:run"
[project.urls]
Homepage = "https://github.com/thevickypedia/NetFuse"
Docs = "https://thevickypedia.github.io/NetFuse"
Source = "https://github.com/thevickypedia/NetFuse"
"Bug Tracker" = "https://github.com/thevickypedia/NetFuse/issues"
"Release Notes" = "https://github.com/thevickypedia/NetFuse/blob/main/release_notes.rst"