-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
50 lines (48 loc) · 1.3 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
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
setup(
name='pytest-docker-fixtures',
version='1.3.20.dev0',
description='pytest docker fixtures',
long_description=(open('README.rst').read() + '\n' +
open('CHANGELOG.rst').read()),
keywords=['pytest', 'fixtures', 'docker'],
author='Nathan Van Gheem',
author_email='[email protected]',
classifiers=[
'License :: OSI Approved :: BSD License',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules'
],
url='https://github.com/guillotinaweb/pytest-docker-fixtures',
license='BSD',
zip_safe=True,
include_package_data=True,
# ext_modules=ext_modules,
packages=find_packages(),
install_requires=[
'pytest',
'docker',
'requests'
],
extras_require={
'pg': [
'psycopg2-binary'
],
'mysql': [
'mysql-connector-python~=8.0.17'
],
'rabbitmq': [
'pika==0.12.0'
],
'kafka': [
'kafka-python'
],
"memcached": [
"pymemcached"
],
}
)