-
Notifications
You must be signed in to change notification settings - Fork 428
/
setup.py
41 lines (40 loc) · 1.36 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
from setuptools import setup, find_packages
setup(
name = 'helium',
# Also update docs/conf.py when you change this:
version = '5.1.0',
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 = [
# Also update requirements/base.txt when you make changes here.
'selenium>=4.16.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',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X'
],
test_suite='tests'
)