-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 1.49 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (43 loc) · 1.49 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "canivete-suico-network-toolkit"
version = "0.4.0"
description = "Ferramenta unificada para diagnóstico, manutenção e automação de tarefas de rede e sistema."
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [
{ name = "João Pedro" }
]
keywords = [
"network", "toolkit", "diagnostic", "automation", "network-tools", "gui"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: System :: Networking",
"Topic :: System :: Systems Administration",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux"
]
dependencies = [
"psutil>=5.9.0",
"customtkinter>=5.2.0",
]
[project.urls]
Homepage = "https://github.com/joaopedrosvr97-hub/Canivete-Sui-o-Python-Toolkit"
Repository = "https://github.com/joaopedrosvr97-hub/Canivete-Sui-o-Python-Toolkit"
Issues = "https://github.com/joaopedrosvr97-hub/Canivete-Sui-o-Python-Toolkit/issues"
Documentation = "https://github.com/joaopedrosvr97-hub/Canivete-Sui-o-Python-Toolkit/tree/main/docs"
[project.scripts]
canivete = "canivete.cli:main"
canivete-gui = "canivete.gui:launch_gui"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]