-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.py
46 lines (39 loc) · 1.52 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
import os
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
about = {}
with open(os.path.join(here, "pactman", "__version__.py")) as f:
exec(f.read(), about)
def read(filename):
with open(os.path.join(here, filename), "rb") as f:
return f.read().decode("utf-8")
setup(
name="pactman",
version=about["__version__"],
description=(
"Tools for creating and verifying consumer driven contracts using the Pact framework."
),
long_description=read("README.md"),
long_description_content_type="text/markdown",
author="ReeceTech",
author_email="[email protected]",
url="https://github.com/reecetech/pactman",
entry_points={
"pytest11": ["pactman-verifier=pactman.verifier.pytest_plugin"],
"console_scripts": ["pactman-verifier=pactman.verifier.command_line:main"],
},
install_requires=["pytest", "requests", "semver", "colorama", "restnavigator"],
packages=find_packages(),
license="MIT, Copyright (c) 2018 ReeceTech",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Mocking",
"Topic :: Software Development :: Testing :: Acceptance",
],
)