Skip to content
This repository was archived by the owner on May 13, 2021. It is now read-only.

Commit

Permalink
Pypi setup
Browse files Browse the repository at this point in the history
  • Loading branch information
philippelt committed Aug 13, 2017
1 parent fa802d6 commit 0f1097c
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,5 @@ ENV/

# mypy
.mypy_cache/

MANIFEST
File renamed without changes.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
26 changes: 26 additions & 0 deletions setup.py
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'
)

0 comments on commit 0f1097c

Please sign in to comment.