-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (41 loc) · 1.7 KB
/
setup.py
File metadata and controls
48 lines (41 loc) · 1.7 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python
import sys
from os.path import join, dirname
from setuptools import setup
CURDIR = dirname(__file__)
with open(join(CURDIR, 'requirements.txt')) as f:
REQUIREMENTS = f.read().splitlines()
sys.path.append(join(CURDIR, 'src'))
filename = join(CURDIR, 'src', 'BrowserMobProxyLibrary', 'version.py')
if sys.version_info.major >= 3:
exec(compile(open(filename).read(), filename, 'exec'))
else:
execfile(filename)
with open(join(CURDIR, 'README.md')) as f:
DESCRIPTION = f.read()
setup(name = 'robotframework-browsermobproxylibrary',
version = VERSION,
description = 'BrowserMob Proxy library for Robot Framework',
long_description = DESCRIPTION,
long_description_content_type='text/markdown',
author = 'Marcin Mierzejewski',
author_email = '<mmierz@gmail.com>',
url = 'https://github.com/s4int/robotframework-BrowserMobProxyLibrary',
license = 'Apache License 2.0',
keywords = 'robotframework testing selenium selenium2 webdriver web browsermob proxy',
platforms = 'any',
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Testing",
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
install_requires = REQUIREMENTS,
package_dir = {'': 'src'},
packages = ['BrowserMobProxyLibrary'],
)