-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·65 lines (61 loc) · 1.83 KB
/
setup.py
File metadata and controls
executable file
·65 lines (61 loc) · 1.83 KB
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
#!/usr/bin/env python3
from setuptools import setup, find_packages
DESCRIPTION = open("README.md").read()
setup(
name="pytest_httpserver",
version="0.3.6",
url="https://www.github.com/csernazs/pytest-httpserver",
packages=find_packages(),
author="Zsolt Cserna",
author_email="cserna.zsolt@gmail.com",
description="pytest-httpserver is a httpserver for pytest",
entry_points={"pytest11": ["pytest_httpserver = pytest_httpserver.pytest_plugin"]},
long_description=DESCRIPTION,
long_description_content_type="text/markdown",
python_requires=">=3.4",
install_requires=[
"typing;python_version<'3.5'",
"wsgiprox",
"werkzeug"
],
extras_require={
"dev": [
"flake8",
"wheel",
"rope",
"pytest",
"pytest-cov",
"coverage",
"ipdb",
"requests",
"sphinx",
"sphinx_rtd_theme",
"reno",
"autopep8",
],
"test": [
"pytest",
"pytest-cov",
"coverage",
"requests",
],
},
setup_requires=["pytest-runner"],
tests_require=["pytest", "requests"],
license="MIT",
platforms="any",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Pytest",
],
)