2013-12-06 13:17:29 +01:00
|
|
|
[metadata]
|
|
|
|
name = tooz
|
2016-11-28 10:05:45 +07:00
|
|
|
author = OpenStack
|
2018-12-04 18:05:27 +08:00
|
|
|
author-email = openstack-discuss@lists.openstack.org
|
2013-12-06 13:17:29 +01:00
|
|
|
summary = Coordination library for distributed systems.
|
|
|
|
description-file = README.rst
|
|
|
|
license = Apache-2
|
2017-07-13 12:09:43 +08:00
|
|
|
home-page = https://docs.openstack.org/tooz/latest/
|
2013-12-06 13:17:29 +01:00
|
|
|
classifier =
|
|
|
|
Environment :: OpenStack
|
|
|
|
Intended Audience :: Developers
|
|
|
|
Intended Audience :: Information Technology
|
|
|
|
License :: OSI Approved :: Apache Software License
|
|
|
|
Operating System :: POSIX :: Linux
|
|
|
|
Programming Language :: Python
|
|
|
|
Programming Language :: Python :: 2
|
|
|
|
Programming Language :: Python :: 2.7
|
2015-06-18 15:51:14 -07:00
|
|
|
Programming Language :: Python :: 3
|
2016-09-12 14:09:41 +02:00
|
|
|
Programming Language :: Python :: 3.5
|
2013-12-06 13:17:29 +01:00
|
|
|
Topic :: System :: Distributed Computing
|
|
|
|
|
|
|
|
[files]
|
|
|
|
packages =
|
|
|
|
tooz
|
|
|
|
|
|
|
|
[entry_points]
|
|
|
|
tooz.backends =
|
2015-01-29 15:17:58 -08:00
|
|
|
etcd = tooz.drivers.etcd:EtcdDriver
|
2017-03-18 13:47:25 -04:00
|
|
|
etcd3 = tooz.drivers.etcd3:Etcd3Driver
|
2017-05-18 16:24:54 -04:00
|
|
|
etcd3+http = tooz.drivers.etcd3gw:Etcd3Driver
|
2013-12-20 12:32:47 +01:00
|
|
|
kazoo = tooz.drivers.zookeeper:KazooDriver
|
2014-08-26 12:18:49 +04:00
|
|
|
zake = tooz.drivers.zake:ZakeDriver
|
2014-02-26 17:09:24 +01:00
|
|
|
memcached = tooz.drivers.memcached:MemcachedDriver
|
2014-07-31 13:28:41 +02:00
|
|
|
ipc = tooz.drivers.ipc:IPCDriver
|
2014-09-10 22:45:28 -07:00
|
|
|
redis = tooz.drivers.redis:RedisDriver
|
2014-10-08 20:28:11 +02:00
|
|
|
postgresql = tooz.drivers.pgsql:PostgresDriver
|
2014-11-14 12:39:19 +01:00
|
|
|
mysql = tooz.drivers.mysql:MySQLDriver
|
2015-01-12 13:35:04 +01:00
|
|
|
file = tooz.drivers.file:FileDriver
|
2015-05-01 14:06:05 -07:00
|
|
|
zookeeper = tooz.drivers.zookeeper:KazooDriver
|
2015-11-13 14:26:42 -08:00
|
|
|
consul = tooz.drivers.consul:ConsulDriver
|
2014-06-24 17:11:26 +02:00
|
|
|
|
2016-05-26 14:39:52 +02:00
|
|
|
[extras]
|
|
|
|
consul =
|
2016-06-21 18:07:05 +00:00
|
|
|
python-consul>=0.4.7 # MIT License
|
2016-05-26 14:39:52 +02:00
|
|
|
etcd =
|
2016-06-21 18:07:05 +00:00
|
|
|
requests>=2.10.0 # Apache-2.0
|
2017-03-18 13:47:25 -04:00
|
|
|
etcd3 =
|
2017-06-21 16:32:10 +02:00
|
|
|
etcd3>=0.6.2 # Apache-2.0
|
2017-05-18 16:24:54 -04:00
|
|
|
etcd3gw =
|
|
|
|
etcd3gw>=0.1.0 # Apache-2.0
|
2016-05-26 14:39:52 +02:00
|
|
|
zake =
|
2016-06-21 18:07:05 +00:00
|
|
|
zake>=0.1.6 # Apache-2.0
|
2016-05-26 14:39:52 +02:00
|
|
|
redis =
|
2016-06-21 18:07:05 +00:00
|
|
|
redis>=2.10.0 # MIT
|
2016-05-26 14:39:52 +02:00
|
|
|
postgresql =
|
2016-06-21 18:07:05 +00:00
|
|
|
psycopg2>=2.5 # LGPL/ZPL
|
2016-05-26 14:39:52 +02:00
|
|
|
mysql =
|
2016-06-21 18:07:05 +00:00
|
|
|
PyMySQL>=0.6.2 # MIT License
|
2016-05-26 14:39:52 +02:00
|
|
|
zookeeper =
|
2016-06-21 18:07:05 +00:00
|
|
|
kazoo>=2.2 # Apache-2.0
|
2016-05-26 14:39:52 +02:00
|
|
|
memcached =
|
2016-06-21 18:07:05 +00:00
|
|
|
pymemcache!=1.3.0,>=1.2.9 # Apache 2.0 License
|
2016-05-26 14:39:52 +02:00
|
|
|
ipc =
|
2016-06-21 18:07:05 +00:00
|
|
|
sysv-ipc>=0.6.8 # BSD License
|
2016-05-26 14:39:52 +02:00
|
|
|
test =
|
2016-06-21 18:07:05 +00:00
|
|
|
mock>=2.0 # BSD
|
|
|
|
python-subunit>=0.0.18 # Apache-2.0/BSD
|
|
|
|
testtools>=1.4.0 # MIT
|
|
|
|
coverage>=3.6 # Apache-2.0
|
|
|
|
fixtures>=3.0.0 # Apache-2.0/BSD
|
2016-07-21 12:29:52 +02:00
|
|
|
pifpaf>=0.10.0 # Apache-2.0
|
2016-11-10 14:26:42 +01:00
|
|
|
os-testr>=0.8.0 # Apache-2.0
|
2019-05-09 20:20:13 +00:00
|
|
|
stestr>=2.0.0,<3.0.0;python_version<'3.0'
|
|
|
|
stestr>=2.0.0;python_version>='3.0'
|
2016-05-26 14:39:52 +02:00
|
|
|
doc =
|
2017-07-06 23:43:55 +00:00
|
|
|
sphinx>=1.6.2 # BSD
|
2017-07-06 23:58:13 +00:00
|
|
|
openstackdocstheme>=1.11.0 # Apache-2.0
|
2016-11-09 16:40:07 +01:00
|
|
|
reno>=1.8.0 # Apache-2.0
|
2016-05-26 14:39:52 +02:00
|
|
|
|
2015-09-24 21:46:09 -04:00
|
|
|
[wheel]
|
|
|
|
universal = 1
|