Skip to content

Commit

Permalink
Migrate to setup.cfg, create pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
vista- committed Nov 5, 2021
1 parent f1c7cfc commit cf967af
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README → README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# PyPeeringManager

This client library for Peering-Manager is based off of `pynetbox` (https://github.com/digitalocean/pynetbox)
and can be used in a similar manner.

Expand Down
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[build-system]
requires = [
"pynetbox>=6.1.3",
"requests>=2.20.0,<3.0"
]
build-backend = "setuptools.build_meta"
20 changes: 20 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[metadata]
name = pypeeringmanager
version = 1.0.0
author = vista
author_email = vista@birb.network
description = Peering-Manager API client library
long_description = file: README.md
long_description_content_type = text/markdown
license = Apache2
url = https://github.com/vista-/pypeeringmanager
keywords = peering-manager, peeringmanager, network-automation
classifiers =
Intended Audience :: Developers
Development Status :: 3 - Alpha
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
Programming Language :: Python :: 2

[options]
packages = pypeeringmanager

0 comments on commit cf967af

Please sign in to comment.