Skip to content

Commit 6c31021

Browse files
author
AutomatedTester
committed
adding setup details
1 parent 6d246f4 commit 6c31021

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

browsermobproxy/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
11
__version__ = '0.0.1'
2+
3+
from server import Server
4+
from client import Client
5+
6+
__all__ = ['Server', 'Client', 'browsermobproxy']

setup.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(name='browsermob-proxy',
4+
version='0.0.1',
5+
description='A simple Assertion Framework',
6+
author='David Burns',
7+
author_email='david.burns at theautomatedtester dot co dot uk',
8+
url='http://oss.theautomatedtester.co.uk/browsermob-proxy-py',
9+
classifiers=['Development Status :: 3 - Alpha',
10+
'Intended Audience :: Developers',
11+
'License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)',
12+
'Operating System :: POSIX',
13+
'Operating System :: Microsoft :: Windows',
14+
'Operating System :: MacOS :: MacOS X',
15+
'Topic :: Software Development :: Testing',
16+
'Topic :: Software Development :: Libraries',
17+
'Programming Language :: Python'],
18+
packages = find_packages() )

0 commit comments

Comments
 (0)