diff --git a/.gitignore b/.gitignore index 1a2daf5..b45b29a 100644 --- a/.gitignore +++ b/.gitignore @@ -97,3 +97,5 @@ ENV/ # mypy .mypy_cache/ + +MANIFEST diff --git a/LICENSE b/LICENSE.txt similarity index 100% rename from LICENSE rename to LICENSE.txt diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..b88034e --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..f83e8d6 --- /dev/null +++ b/setup.py @@ -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='ph.larduinat@wanadoo.fr', + 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' +)