-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
37 lines (36 loc) · 1.17 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
from setuptools import setup
from setuptools import find_packages
setup(
name='pact-test',
version='1.0.3',
author='Guido Barbaglia',
author_email='guido.barbaglia@gmail.com',
packages=find_packages(),
license='LICENSE',
long_description=open('README.rst').read(),
description='Python implementation for Pact (http://pact.io/)',
install_requires=['requests'],
setup_requires=['pytest-runner'],
tests_require=[
'pytest>=3.0',
'pytest-pep8',
'pytest-sugar',
'pytest-mock',
'pytest-cov',
'pytest-runner'
],
url='https://github.com/Kalimaha/pact-test/',
scripts=['bin/pact-test'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Testing'
]
)