-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.py
45 lines (40 loc) · 1.52 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python3
import version
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open("docs/README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(name='robotframework-zoomba',
version=version.VERSION,
description='Robot Framework mini-framework.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Accruent/zoomba',
maintainer='Alex Calandra, Michael Hintz, Keith Smoland, Matthew Giardina, Brandon Wolfe, Neil Howell,'
' Tommy Hoang',
maintainer_email='[email protected]',
license='GPL-3.0',
keywords='Robot Framework robot-framework selenium requests appium soap winappdriver appium robotframework'
'desktop windows zoomba python robotframework-library appium-windows appiumlibrary api-rest api '
'soap-api appium-mobile mobile',
platforms='any',
install_requires=requirements,
extras_require={
'testing': [
'mock'
]
},
classifiers="""
Development Status :: 5 - Production/Stable
Operating System :: OS Independent
Programming Language :: Python :: 3
Topic :: Software Development :: Testing
Framework :: Robot Framework :: Library
""".strip().splitlines(),
package_dir={'': 'src'},
packages=['Zoomba', 'Zoomba/Helpers']
)