This repository was archived by the owner on May 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fa802d6
commit 0f1097c
Showing
4 changed files
with
30 additions
and
0 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 |
---|---|---|
|
@@ -97,3 +97,5 @@ ENV/ | |
|
||
# mypy | ||
.mypy_cache/ | ||
|
||
MANIFEST |
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,2 @@ | ||
[metadata] | ||
description-file = README.md |
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,26 @@ | ||
# python setup.py --dry-run --verbose install | ||
|
||
from distutils.core import setup | ||
|
||
setup( | ||
name='lhubic', | ||
version='1.0.11', | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Developers', | ||
'Programming Language :: Python :: 3' | ||
], | ||
author='Philippe Larduinat', | ||
author_email='[email protected]', | ||
py_modules=['lhubic'], | ||
scripts=[], | ||
data_files=[], | ||
install_requires=[ | ||
"requests >= 2.5.1", | ||
"python-swiftclient >= 2.5.0" | ||
], | ||
url='https://github.com/philippelt/lhubic', | ||
download_url='https://github.com/philippelt/lhubic/tarball/v1.0.11.tar.gz', | ||
license='GPL V3', | ||
description='Python swift client with Hubic authentication library' | ||
) |