quark/setup.cfg
Justin Hammond 9dc68e4057 Initial work on async worker for quark
JIRA:NCP-1172

Created basic async service and test client
- this is basically scaffolding and more will be added later
- currently doesn't have tests but will on the next PR
- intention is to add 'plugins' to support different types of async
  operations

Created AsyncTransactions model and migration

Created jobs endpoint and resource

Created plugin_module for jobs

Made job plugin_module admin-only for writes

Allowed query by completed

Created functional test for job plugin_module

Fixed flake8 stuff

Undid the neutron requirements

Implements: blueprint quark-async-worker
Change-Id: I88417f094e90b5410bce8ea5fed01043ed47aedd
2016-06-22 11:24:33 -05:00

30 lines
1.0 KiB
INI

[metadata]
name = quark
author = Ozone
author-email = jkoelker@rackspace.com
summary = A neutron plugin plugin
description-file = README.rst
license = Apache-2
home-page = http://github.com/jkoelker/quark
classifier =
Development Status :: 4 - Beta
Environment :: Console
Environment :: OpenStack
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
[entry_points]
console_scripts =
quark-db-manage = quark.db.migration.alembic.cli:main
gunicorn-neutron-server = quark.gunicorn_server:main
quark-agent = quark.agent.agent:main
quark-async-worker = quark.tools.async_worker:main
quark-async-tester = quark.tools.async_worker:test_main
ip_availability = quark.ip_availability:main
redis_sg_tool = quark.tools.redis_sg_tool:main
null_routes = quark.tools.null_routes:main
insert_provider_subnets = quark.tools.insert_provider_subnets:main