forked from AutomatedTester/browsermob-proxy-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
20 lines (19 loc) · 945 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
setup(name='browsermob-proxy',
version='0.8.0',
description='A library for interacting with the Browsermob Proxy',
author='David Burns',
author_email='[email protected]',
url='http://oss.theautomatedtester.co.uk/browsermob-proxy-py',
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python'],
packages = find_packages(),
install_requires=['requests>=2.9.1'],
)