Skip to content
This repository has been archived by the owner on Jul 15, 2022. It is now read-only.

Commit

Permalink
Merge pull request #3 from sandromodarelli/master
Browse files Browse the repository at this point in the history
first package
  • Loading branch information
valeriano-manassero committed Jul 4, 2019
2 parents 8ab2953 + c7c2d56 commit 42a154e
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 12 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ Python library interact with StackPath API (https://developer.stackpath.com/en/)

It uses a custom OAuth2 requests.session

## Install

```bash
pip install pystackpath
```

## Examples

### Set up a new Stackpath instance
Expand Down
26 changes: 14 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="pystackpath",
version="0.0.1-alpha1",
version="0.0.1",
author="Sandro Modarelli",
author_email="sandro.modarelli@namecheap.com",
description="A package to interact with StackPath",
Expand All @@ -14,19 +14,21 @@
url="https://github.com/NCCloud/pystackpath",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU GPLv3 License",
'Programming Language :: Python',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Internet :: WWW/HTTP :: Site Management",
"Topic :: Software Development :: Libraries"
],
keywords=[
'stackpath',
'cdn',
'waf',
'proxy',
'kubernetes',
"stackpath",
"cdn",
"waf",
"proxy",
"kubernetes"
]
)

0 comments on commit 42a154e

Please sign in to comment.