-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
55 lines (48 loc) · 1.33 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
from setuptools import find_packages, setup
setup(
name='pytest-postgres',
version='0.7.0',
packages=find_packages(),
url='https://github.com/clayman74/pytest-postgres',
licence='MIT',
author='Kirill Sumorokov',
author_email='sumorokov.k@gmail.com',
description='Run PostgreSQL in Docker container in Pytest.',
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Testing",
"Framework :: Pytest"
],
keywords='pytest-postgres',
install_requires=[
'docker',
'psycopg2-binary',
'pytest',
],
extras_require={
'develop': [
'flake8',
'flake8-bugbear',
'flake8-builtins-unleashed',
'flake8-comprehensions',
'flake8-import-order',
'flake8-mypy',
'flake8-pytest'
],
'test': [
'pytest',
'coverage',
'coveralls'
]
},
entry_points={
'pytest11': [
'postgres = pytest_postgres.plugin'
]
}
)