Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
38 lines (37 sloc)
1.26 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from setuptools import setup, find_packages | |
setup( | |
name = 'helium', | |
# Also update docs/conf.py when you change this: | |
version = '3.0.9-SNAPSHOT', | |
author = 'Michael Herrmann', | |
author_email = 'michael+removethisifyouarehuman@herrmann.io', | |
description = 'Lighter browser automation based on Selenium.', | |
keywords = 'helium selenium browser automation', | |
url = 'https://github.com/mherrmann/selenium-python-helium', | |
python_requires='>=3', | |
packages = find_packages(exclude=['tests', 'tests.*']), | |
install_requires = [ | |
# Also update requirements/base.txt when you make changes here. | |
'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' | |
) |