-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create python package from japi class
- Loading branch information
1 parent
39989cf
commit 4440424
Showing
7 changed files
with
723 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
__pycache__ | ||
*.pyc | ||
*.swp | ||
*.egg | ||
jelapi.egg-info/ | ||
.mypy_cache/ | ||
build/ | ||
dist/ |
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,3 @@ | ||
# jelapi | ||
|
||
A Jelastic API Python library |
This file was deleted.
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# JelasticAPI | ||
|
||
__version__ = "0.0.1" | ||
|
||
from .jelapi import JelasticAPI, JelasticAPIException |
File renamed without changes.
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,33 @@ | ||
#!/usr/bin/env python3 | ||
|
||
from setuptools import find_packages, setup | ||
from jelapi import __version__ | ||
|
||
install_requires = ["requests>=2.16.0"] | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setup( | ||
name="jelapi", | ||
version=__version__, | ||
author="Didier Raboud", | ||
author_email="[email protected]", | ||
license="GPLv3+", | ||
description="jelapi: A Jelastic API Python library", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/liip/jelapi", | ||
packages=find_packages(), | ||
install_requires=["requests>=2.16.0"], | ||
classifiers=[ | ||
"Programming Language :: Python :: 3.6", | ||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", | ||
"Operating System :: OS Independent", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: System Administrators", | ||
"Topic :: Software Development :: Libraries", | ||
"Development Status :: 4 - Beta", | ||
], | ||
python_requires=">=3.6", | ||
) |