-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathsetup.py
executable file
·29 lines (26 loc) · 940 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
#!/usr/bin/env python
from setuptools import setup
import os
DESCRIPTION = open(
os.path.join(os.path.dirname(__file__), 'README.md')).read().strip()
setup(
name='httmock',
version='1.4.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',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Testing',
'Operating System :: OS Independent'],
install_requires=['requests >= 1.0.0'],
license='Apache-2.0',
long_description=DESCRIPTION,
long_description_content_type='text/markdown',
test_suite='tests')