f94fd2c1ae
We only use it in the redis driver. Switch to using packaging.version.Version, which is good enough for the redis-py test suite also [1]. [1] https://github.com/redis/redis-py/blob/07fc339b4a/tests/conftest.py#L199-L208 Change-Id: I42fddfde153c3293099765bf76fe07a5064b3213 Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
68 lines
2.0 KiB
INI
68 lines
2.0 KiB
INI
[metadata]
|
|
name = tooz
|
|
author = OpenStack
|
|
author_email = openstack-discuss@lists.openstack.org
|
|
summary = Coordination library for distributed systems.
|
|
description_file = README.rst
|
|
license = Apache-2
|
|
home_page = https://docs.openstack.org/tooz/latest/
|
|
python_requires = >=3.8
|
|
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 :: 3
|
|
Programming Language :: Python :: 3.8
|
|
Programming Language :: Python :: 3.9
|
|
Programming Language :: Python :: 3.10
|
|
Programming Language :: Python :: 3.11
|
|
Programming Language :: Python :: 3 :: Only
|
|
Programming Language :: Python :: Implementation :: CPython
|
|
Topic :: System :: Distributed Computing
|
|
|
|
[files]
|
|
packages =
|
|
tooz
|
|
|
|
[entry_points]
|
|
tooz.backends =
|
|
etcd = tooz.drivers.etcd:EtcdDriver
|
|
etcd3+http = tooz.drivers.etcd3gw:Etcd3Driver
|
|
etcd3+https = tooz.drivers.etcd3gw:Etcd3Driver
|
|
kazoo = tooz.drivers.zookeeper:KazooDriver
|
|
zake = tooz.drivers.zake:ZakeDriver
|
|
memcached = tooz.drivers.memcached:MemcachedDriver
|
|
ipc = tooz.drivers.ipc:IPCDriver
|
|
redis = tooz.drivers.redis:RedisDriver
|
|
postgresql = tooz.drivers.pgsql:PostgresDriver
|
|
mysql = tooz.drivers.mysql:MySQLDriver
|
|
file = tooz.drivers.file:FileDriver
|
|
zookeeper = tooz.drivers.zookeeper:KazooDriver
|
|
consul = tooz.drivers.consul:ConsulDriver
|
|
|
|
[extras]
|
|
consul =
|
|
python-consul2>=0.0.16 # MIT License
|
|
etcd =
|
|
requests>=2.10.0 # Apache-2.0
|
|
etcd3gw =
|
|
etcd3gw!=0.2.6,>=2.3.0 # Apache-2.0
|
|
zake =
|
|
zake>=0.1.6 # Apache-2.0
|
|
redis =
|
|
redis>=4.0.0 # MIT
|
|
packaging>=23.0.0 # Apache-2.0
|
|
postgresql =
|
|
psycopg2>=2.5 # LGPL/ZPL
|
|
mysql =
|
|
PyMySQL>=0.6.2 # MIT License
|
|
zookeeper =
|
|
kazoo>=2.6 # Apache-2.0
|
|
memcached =
|
|
pymemcache!=1.3.0,>=1.2.9 # Apache 2.0 License
|
|
ipc =
|
|
sysv-ipc>=0.6.8 # BSD License
|