-
Notifications
You must be signed in to change notification settings - Fork 263
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2270 from GNS3/packaging-migration
Packaging migration
- Loading branch information
Showing
15 changed files
with
112 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,7 @@ | ||
include README.md | ||
include AUTHORS | ||
include LICENSE | ||
include MANIFEST.in | ||
include requirements.txt | ||
include conf/*.conf | ||
recursive-include tests * | ||
recursive-exclude docs * | ||
include CHANGELOG | ||
recursive-include gns3server * | ||
recursive-exclude docs * | ||
recursive-exclude * __pycache__ | ||
recursive-exclude * *.py[co] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
-r requirements.txt | ||
|
||
pytest==7.4.0 | ||
flake8==5.0.4 # v5.0.4 is the last to support Python 3.7 | ||
pytest-timeout==2.1.0 | ||
pytest-asyncio==0.21.1 | ||
requests==2.31.0 | ||
httpx==0.24.1 | ||
httpx==0.24.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ name = "gns3-server" | |
description = "GNS3 graphical interface for the GNS3 server." | ||
license = {file = "LICENSE"} | ||
authors = [ | ||
{ name="Jeremy Grossmann" } | ||
{ name = "Jeremy Grossmann", email = "[email protected]" } | ||
] | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
|
@@ -29,7 +29,7 @@ classifiers = [ | |
"Programming Language :: Python :: Implementation :: CPython" | ||
] | ||
|
||
dynamic = ["version", "dependencies"] | ||
dynamic = ["version", "dependencies", "optional-dependencies"] | ||
|
||
[tool.setuptools] | ||
packages = ["gns3server"] | ||
|
@@ -38,15 +38,8 @@ packages = ["gns3server"] | |
version = {attr = "gns3server.version.__version__"} | ||
dependencies = {file = "requirements.txt"} | ||
|
||
[project.optional-dependencies] | ||
test = [ | ||
"pytest==7.2.2", | ||
"flake8==5.0.4", # v5.0.4 is the last to support Python 3.7 | ||
"pytest-timeout==2.1.0", | ||
"pytest-asyncio==0.20.3", | ||
"requests==2.28.2", | ||
"httpx==0.23.3" | ||
] | ||
[tool.setuptools.dynamic.optional-dependencies] | ||
dev = {file = ['dev-requirements.txt']} | ||
|
||
[project.urls] | ||
"Homepage" = "http://gns3.com" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,4 +19,3 @@ email-validator==2.0.0.post2 | |
watchfiles==0.19.0 | ||
zstandard==0.21.0 | ||
importlib_resources>=1.3 | ||
setuptools>=60.8.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters