diff --git a/Pipfile b/etcd3_wrapper/Pipfile similarity index 100% rename from Pipfile rename to etcd3_wrapper/Pipfile diff --git a/Pipfile.lock b/etcd3_wrapper/Pipfile.lock similarity index 100% rename from Pipfile.lock rename to etcd3_wrapper/Pipfile.lock diff --git a/__init__.py b/etcd3_wrapper/__init__.py similarity index 100% rename from __init__.py rename to etcd3_wrapper/__init__.py diff --git a/etcd_wrapper.py b/etcd3_wrapper/etcd_wrapper.py similarity index 100% rename from etcd_wrapper.py rename to etcd3_wrapper/etcd_wrapper.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..50286bf --- /dev/null +++ b/setup.py @@ -0,0 +1,10 @@ +from setuptools import setup + +setup( + name='etcd3_wrapper', + version='1.0', + description='A wrapper for etcd3', + author='ungleich', + author_email='info@ungleich.ch', + packages=['etcd3_wrapper'] #same as name +)