forked from mherrmann/helium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (39 loc) · 1.22 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
from setuptools import setup, find_packages
setup(
name = 'helium',
version = '3.0.6-SNAPSHOT',
author = 'Michael Herrmann',
author_email = '[email protected]',
description = 'Lighter browser automation based on Selenium.',
keywords = 'helium selenium browser automation',
url = 'https://github.com/mherrmann/helium',
python_requires='>=3',
packages = find_packages(exclude=['tests', 'tests.*']),
install_requires = [
'selenium==3.141.0'
],
package_data = {
'helium._impl': ['webdrivers/**/*']
},
zip_safe = False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X'
],
test_suite='tests',
tests_require=[
'psutil==5.6.6',
"pywin32 >= 227;platform_system=='Windows'"
]
)