forked from patrys/httmock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (25 loc) · 858 Bytes
/
setup.py
File metadata and controls
executable file
·29 lines (25 loc) · 858 Bytes
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
#!/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.2.3',
description='A mocking library for requests.',
author='Patryk Zawadzki',
author_email='patrys@room-303.com',
url='https://github.com/patrys/httmock',
py_modules=['httmock'],
keywords=['requests', 'testing', 'mock'],
classifiers=[
'Programming Language :: Python',
'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')