summaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2015-09-29 11:20:38 -0400
committerSimo Sorce <simo@redhat.com>2015-10-19 12:16:52 -0400
commit5fceed2d9be1001fc486d801e0a0f923d8dd3159 (patch)
treefc51762aa859135a1ebdaa9e96c95b25a847991c /setup.py
parent18178ce292ae2f88528c7e6256c9956ec9ebf896 (diff)
downloadcustodia-5fceed2d9be1001fc486d801e0a0f923d8dd3159.tar.gz
custodia-5fceed2d9be1001fc486d801e0a0f923d8dd3159.tar.xz
custodia-5fceed2d9be1001fc486d801e0a0f923d8dd3159.zip
Make tox pep8 happy
Signed-off-by: Simo Sorce <simo@redhat.com> Reviewed-by: Christian Heimes <cheimes@redhat.com>
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py25
1 files changed, 12 insertions, 13 deletions
diff --git a/setup.py b/setup.py
index 892048d..666227d 100755
--- a/setup.py
+++ b/setup.py
@@ -5,18 +5,17 @@
from distutils.core import setup
setup(
- name = 'custodia',
- version = '0.1.0',
- license = 'GPLv3+',
- maintainer = 'Custodia project Contributors',
- maintainer_email = 'simo@redhat.com',
+ name='custodia',
+ version='0.1.0',
+ license='GPLv3+',
+ maintainer='Custodia project Contributors',
+ maintainer_email='simo@redhat.com',
url='https://github.com/simo5/custodia',
- packages = ['custodia', 'custodia.httpd', 'custodia.store',
- 'custodia.message', 'tests'],
- data_files = [('share/man/man7', ["man/custodia.7"]),
- ('share/doc/custodia', ['LICENSE', 'README', 'API.md']),
- ('share/doc/custodia/examples', ['custodia.conf']),
- ],
- scripts = ['custodia/custodia']
+ packages=['custodia', 'custodia.httpd', 'custodia.store',
+ 'custodia.message', 'tests'],
+ data_files=[('share/man/man7', ["man/custodia.7"]),
+ ('share/doc/custodia', ['LICENSE', 'README', 'API.md']),
+ ('share/doc/custodia/examples', ['custodia.conf']),
+ ],
+ scripts=['custodia/custodia']
)
-