
Fixes existing pep8 errors and reenables the corresponding tox rules Change-Id: I4168a90c40173e4c35c9d75030cd592ace657508
15 lines
276 B
Python
15 lines
276 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name='keystone_utils',
|
|
version='0.1',
|
|
description='',
|
|
author='',
|
|
author_email='',
|
|
zip_safe=False,
|
|
include_package_data=True,
|
|
packages=find_packages(),
|
|
test_suite='keystone_utils/tests'
|
|
|
|
)
|