-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* peeringdb-py commands to setup and run peeringdb server #1219 * modernize --------- Co-authored-by: 20C <[email protected]>
- Loading branch information
Showing
59 changed files
with
3,304 additions
and
2,598 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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -10,7 +10,21 @@ readme = "README.md" | |
repository = "https://github.com/peeringdb/peeringdb-py" | ||
authors = [ "PeeringDB <[email protected]>",] | ||
license = "Apache-2.0" | ||
classifiers = [ "Development Status :: 5 - Production/Stable", "Framework :: Django :: 2.2", "Framework :: Django :: 3.0", "Framework :: Django :: 3.1", "Framework :: Django :: 3.2", "Intended Audience :: Developers", "Intended Audience :: System Administrators", "Intended Audience :: Telecommunications Industry", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Internet",] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Framework :: Django :: 3.2", | ||
"Framework :: Django :: 4.2", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: System Administrators", | ||
"Intended Audience :: Telecommunications Industry", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Topic :: Internet" | ||
] | ||
[[tool.poetry.packages]] | ||
include = "peeringdb" | ||
from = "src" | ||
|
@@ -23,18 +37,17 @@ multi_line_output = 3 | |
peeringdb = "peeringdb.cli:main" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.7" | ||
python = "^3.8" | ||
confu = "^1" | ||
munge = { extras = ["tomlkit", "yaml"], version = "^1.2.0" } | ||
"twentyc.rpc" = "^1" | ||
|
||
[tool.poetry.dev-dependencies] | ||
|
||
# testing | ||
django = "~3.2" | ||
django_peeringdb = "^2.16" | ||
django = "~4.2" | ||
django_peeringdb = "^3.0.0" | ||
|
||
codecov = "*" | ||
pytest = "^6.0.1" | ||
pytest-cov = "*" | ||
tox = ">=3.24" | ||
|
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
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"data": [ | ||
{ | ||
"id": 1, | ||
"org_id": 1, | ||
"org_name": "org c1ab780b", | ||
"status": "ok", | ||
"created": "2023-04-21T13:46:31.660560Z", | ||
"updated": "2023-04-21T16:02:46.336666Z", | ||
"name": "campus 41c40b88", | ||
"name_long": "campus 505fd8c1", | ||
"notes": "Some notes", | ||
"aka": "campus 34d1fb8d", | ||
"website": "https://www.peeringdb.com", | ||
"social_media": [ | ||
{ | ||
"service": "website", | ||
"identifier": "https://www.peeringdb.com" | ||
} | ||
], | ||
"country": "US", | ||
"city": "Chicago", | ||
"zipcode": "12345", | ||
"state": "Illinois" | ||
} | ||
], | ||
"meta": {} | ||
} |
Oops, something went wrong.