forked from patrys/httmock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·30 lines (26 loc) · 910 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
import os
LICENSE = open(
os.path.join(os.path.dirname(__file__), 'LICENSE')).read().strip()
DESCRIPTION = open(
os.path.join(os.path.dirname(__file__), 'README.md')).read().strip()
setup(
name='httmock',
version='1.3.0',
description='A mocking library for requests.',
author='Patryk Zawadzki',
author_email='[email protected]',
url='https://github.com/patrys/httmock',
py_modules=['httmock'],
keywords=['requests', 'testing', 'mock'],
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing',
'Operating System :: OS Independent'],
install_requires=['requests >= 1.0.0'],
license=LICENSE,
long_description=DESCRIPTION,
test_suite='tests')