File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change 1
1
__version__ = '0.0.1'
2
+
3
+ from server import Server
4
+ from client import Client
5
+
6
+ __all__ = ['Server' , 'Client' , 'browsermobproxy' ]
Original file line number Diff line number Diff line change
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 () )
You can’t perform that action at this time.
0 commit comments