-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (35 loc) · 1.03 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
# -*- coding: utf-8 -*-
# DO NOT EDIT THIS FILE!
# This file has been autogenerated by dephell <3
# https://github.com/dephell/dephell
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
readme = ""
setup(
long_description=readme,
name="vcr-stub-server",
version="0.1.0",
description="Standalone stub server for replaying VCR cassettes",
python_requires="==3.*,>=3.6.0",
author="Simon Nizov",
author_email="[email protected]",
packages=["vcr_stub_server", "vcr_stub_server.cassettes"],
package_dir={"": "."},
package_data={},
install_requires=["vcrpy==4.*,>=4.0.2"],
extras_require={
"dev": [
"black==19.*,>=19.10.0",
"ipdb==0.*,>=0.13.2",
"pytest==pytest-cov",
"pytest-cov==2.*,>=2.8.1",
"requests==2.*,>=2.23.0",
]
},
scripts=["vcr_stub_server/__main__.py"],
entry_points={
"console_scripts": ["vcr-stub-server=vcr_stub_server.__main__:main"],
},
)