-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
41 lines (36 loc) · 1.1 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
from setuptools import setup, find_packages
exec(open("./src/pytest_vts/version.py").read())
with open("PyPI_LONGDESC.rst") as fd:
long_description = fd.read()
keywords = ("pytest plugin http stub mock record responses recorder "
"vcr betamax automatic")
setup(
name="pytest-vts",
version=__version__, # noqa
packages=find_packages("src"),
package_dir={"": "src"},
install_requires=[
"pytest >=2.3",
"responses",
"cookies",
"six",
"urllib3 !=1.25.0,!=1.25.1,!=1.25.2"
],
entry_points={
"pytest11": [
"pytest_vts = pytest_vts"
],
},
# metadata for upload to PyPI
author="Bogdan Hodorog",
author_email="bogdan.hodorog@gmail.com",
description="pytest plugin for automatic recording of http stubbed tests",
long_description=long_description,
license="MIT",
keywords=keywords,
classifiers=["Framework :: Pytest"],
project_urls={
'Bug Reports': 'https://github.com/bhodorog/pytest-vts/issues',
'Source': 'https://github.com/bhodorog/pytest-vts',
},
)