-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
------------------ * [fix] py.typed
- Loading branch information
vprusakovs
committed
Nov 1, 2022
1 parent
bf6c435
commit 4175434
Showing
3 changed files
with
11 additions
and
4 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 |
---|---|---|
|
@@ -34,13 +34,13 @@ or install the package from github.com release | |
|
||
.. code:: bash | ||
pip install https://github.com/vladimirs-git/netports/archive/refs/tags/0.6.0.tar.gz | ||
pip install https://github.com/vladimirs-git/netports/archive/refs/tags/0.6.1.tar.gz | ||
or install the package from github.com repository | ||
|
||
.. code:: bash | ||
pip install git+https://github.com/vladimirs-git/[email protected].0 | ||
pip install git+https://github.com/vladimirs-git/[email protected].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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[project] | ||
name = "netports" | ||
version = "0.6.0" | ||
version = "0.6.1" | ||
authors = [{ name="Vladimir Prusakov", email="[email protected]" }] | ||
description = "Python tools for managing ranges of VLANs, TCP/UDP ports, IP protocols, Interfaces" | ||
readme = "README.rst" | ||
|
@@ -21,9 +21,11 @@ classifiers = [ | |
"Homepage" = "https://github.com/vladimirs-git/netports" | ||
"Repository" = "https://github.com/vladimirs-git/netports" | ||
"Bug Tracker" = "https://github.com/vladimirs-git/netports/issues" | ||
"Download URL" = "https://github.com/vladimirs-git/netports/archive/refs/tags/0.6.0.tar.gz" | ||
"Download URL" = "https://github.com/vladimirs-git/netports/archive/refs/tags/0.6.1.tar.gz" | ||
[tool.setuptools.packages.find] | ||
include = ["netports"] | ||
[tool.setuptools.package-data] | ||
netports = ["py.typed"] | ||
[project.optional-dependencies] | ||
dev = [ | ||
"dictdiffer ~= 0.9", | ||
|