mirror of
https://github.com/GNS3/gns3-gui.git
synced 2026-05-17 00:46:01 +03:00
53 lines
1.7 KiB
TOML
53 lines
1.7 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "gns3-gui"
|
|
description = "GNS3 graphical interface for the GNS3 server."
|
|
license-files = ["LICENSE"]
|
|
authors = [
|
|
{ name = "Jeremy Grossmann", email = "developers@gns3.com" }
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
classifiers = [
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Environment :: X11 Applications :: Qt",
|
|
"Intended Audience :: Information Technology",
|
|
"Topic :: System :: Networking",
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
"Natural Language :: English",
|
|
"Operating System :: POSIX",
|
|
"Operating System :: MacOS :: MacOS X",
|
|
"Operating System :: Microsoft :: Windows",
|
|
"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",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Programming Language :: Python :: 3.14",
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
]
|
|
|
|
dynamic = ["version", "dependencies", "optional-dependencies"]
|
|
|
|
[tool.setuptools]
|
|
packages = ["gns3"]
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "gns3.version.__version__"}
|
|
dependencies = {file = "requirements.txt"}
|
|
|
|
[tool.setuptools.dynamic.optional-dependencies]
|
|
dev = {file = ['dev-requirements.txt']}
|
|
|
|
[project.urls]
|
|
"Homepage" = "http://gns3.com"
|
|
"Repository" = "http://github.com/GNS3/gns3-gui"
|
|
"Bug tracker" = "http://github.com/GNS3/gns3-gui/issues"
|
|
|
|
[project.gui-scripts]
|
|
gns3 = "gns3.main:main"
|