=== modified file 'setup.py'
@@ -22,48 +22,44 @@
setup(
- name = 'launch-control-tool',
- version = ":versiontools:launch_control_tool:__version__",
- author = "Zygmunt Krynicki",
- author_email = "zygmunt.krynicki@linaro.org",
- packages = find_packages(),
- description = "Command line utility for Launch Control",
+ name='launch-control-tool',
+ version=":versiontools:launch_control_tool:__version__",
+ author="Zygmunt Krynicki",
+ author_email="zygmunt.krynicki@linaro.org",
+ packages=find_packages(),
+ description="Command line utility for Launch Control",
url='https://launchpad.net/launch-control-tool',
test_suite='launch_control_tool.tests.test_suite',
license="LGPLv3",
- entry_points = """
+ entry_points="""
[console_scripts]
- lc-tool = launch_control_tool.main:main
+ lc-tool=launch_control_tool.main:main
[launch_control_tool.commands]
- bundles = launch_control_tool.commands:bundles
- deserialize = launch_control_tool.commands:deserialize
- get = launch_control_tool.commands:get
- put = launch_control_tool.commands:put
- server_version = launch_control_tool.commands:server_version
- make_stream = launch_control_tool.commands:make_stream
- backup = launch_control_tool.commands:backup
- restore = launch_control_tool.commands:restore
- pull = launch_control_tool.commands:pull
- streams = launch_control_tool.commands:streams
- data_views = launch_control_tool.commands:data_views
- query_data_view = launch_control_tool.commands:query_data_view
+ bundles=launch_control_tool.commands:bundles
+ deserialize=launch_control_tool.commands:deserialize
+ get=launch_control_tool.commands:get
+ put=launch_control_tool.commands:put
+ server_version=launch_control_tool.commands:server_version
+ make_stream=launch_control_tool.commands:make_stream
+ backup=launch_control_tool.commands:backup
+ restore=launch_control_tool.commands:restore
+ pull=launch_control_tool.commands:pull
+ streams=launch_control_tool.commands:streams
+ data_views=launch_control_tool.commands:data_views
+ query_data_view=launch_control_tool.commands:query_data_view
""",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
- "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
+ ("License :: OSI Approved :: GNU Library or Lesser General Public"
+ " License (LGPL)"),
"Operating System :: OS Independent",
+ "Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
- "Topic :: Software Development :: Testing",
- ],
- install_requires = [
- 'versiontools >= 1.3.1',
- 'lava-tool >= 0.1'
- ],
- setup_requires = [
- 'versiontools >= 1.3.1',
- ],
- tests_require = [
- ],
- zip_safe = True,
-)
+ "Topic :: Software Development :: Testing"],
+ install_requires=[
+ 'lava-tool >= 0.1',
+ 'versiontools >= 1.3.1'],
+ setup_requires=['versiontools >= 1.3.1'],
+ tests_require=[],
+ zip_safe=True)