-
Notifications
You must be signed in to change notification settings - Fork 39
/
setup.py
67 lines (66 loc) · 2.14 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import setuptools
setuptools.setup(
name='yandex-taxi-testsuite',
install_requires=[
'PyYAML>=3.13',
'aiohttp>=3.5.4',
'yarl>=1.4.2,!=1.6',
'py>=1.10',
'pytest-aiohttp>=0.3.0',
'pytest-asyncio<0.22',
'pytest>=4.5.0',
'python-dateutil>=2.7.3',
'uvloop>=0.12.1',
'cached-property>=1.5.1',
'contextlib2; python_version < "3.7"',
'dataclasses; python_version < "3.7"',
],
extras_require={
'mongodb': ['pymongo>=3.7.1'],
'postgresql': ['psycopg2>=2.7.5', 'yandex-pgmigrate'],
'postgresql-binary': ['psycopg2-binary>=2.7.5'],
'clickhouse': ['clickhouse-driver>=0.2.0'],
'redis': ['python-redis>=0.2.1', 'redis>=2.10.6'],
'mysql': ['PyMySQL>=0.9.2'],
'rabbitmq': [
'aio-pika==7.2.0; python_version < "3.7"',
'aio-pika>=8.1.0; python_version >= "3.7"',
],
'kafka': ['aiokafka==0.11.0'],
},
setup_requires=['pytest-runner'],
tests_require=['pytest'],
packages=setuptools.find_packages(include=['testsuite', 'testsuite.*']),
package_data={
'testsuite.environment': ['scripts/*.sh'],
'testsuite.databases.mongo': ['scripts/service-mongo'],
'testsuite.databases.redis': [
'configs/*.tpl',
'scripts/service-redis',
'scripts/service-cluster-redis',
],
'testsuite.databases.mysql': [
'scripts/mysql-helper',
'scripts/service-mysql',
],
'testsuite.databases.pgsql': [
'configs/*.conf',
'scripts/find-pg.sh',
'scripts/pgmigrate-helper',
'scripts/psql-helper',
'scripts/service-postgresql',
],
'testsuite.databases.clickhouse': [
'scripts/service-clickhouse',
'scripts/find-clickhouse.sh',
],
'testsuite.databases.rabbitmq': [
'scripts/service-rabbitmq',
'scripts/find-rabbitmq.sh',
],
'testsuite.databases.kafka': [
'scripts/service-kafka',
'scripts/find-kafka.sh',
],
},
)