aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlice Ferrazzi <alicef@gentoo.org>2017-06-14 06:39:57 +0900
committerAlice Ferrazzi <alicef@gentoo.org>2017-06-14 06:39:57 +0900
commitb72c32046a1ef0a1cad6e5a4bdb0839e7866738c (patch)
tree890d276270877730ecfb21fee0e2893edd23dddc /elivepatch_client/setup.py
parentfixed import (diff)
downloadelivepatch-b72c32046a1ef0a1cad6e5a4bdb0839e7866738c.tar.gz
elivepatch-b72c32046a1ef0a1cad6e5a4bdb0839e7866738c.tar.bz2
elivepatch-b72c32046a1ef0a1cad6e5a4bdb0839e7866738c.zip
added setup.py for elivepatch client
Diffstat (limited to 'elivepatch_client/setup.py')
-rw-r--r--elivepatch_client/setup.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/elivepatch_client/setup.py b/elivepatch_client/setup.py
new file mode 100644
index 0000000..b5c37c1
--- /dev/null
+++ b/elivepatch_client/setup.py
@@ -0,0 +1,12 @@
+from setuptools import setup, find_packages
+
+setup(
+ name='elivepatch_client',
+ version='0.01',
+ description='Patching differents gentoo distributions',
+ url='https://gentoo.org',
+ author='Alice Ferrazzi',
+ author_email='alice.ferrazzi@gmail.com',
+ license='GNU GPLv2',
+ packages=find_packages(),
+)