diff --git a/README b/README.md similarity index 92% rename from README rename to README.md index 9ca4518..ca574d2 100644 --- a/README +++ b/README.md @@ -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. diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..ff4bae3 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,6 @@ +[build-system] +requires = [ + "pynetbox>=6.1.3", + "requests>=2.20.0,<3.0" +] +build-backend = "setuptools.build_meta" diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..9088067 --- /dev/null +++ b/setup.cfg @@ -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