-
-
Notifications
You must be signed in to change notification settings - Fork 69
/
setup.py
52 lines (48 loc) · 2 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
46
47
48
49
50
51
52
import setuptools
requirements = ['selenium~=4.6', "cdp-socket>=1.2.5", "numpy", "scipy~=1.7", "aiofiles",
'platformdirs']
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name='selenium_driverless',
author='Aurin Aegerter',
author_email='[email protected]',
description='Undetected selenium without chromedriver usage (Non-commercial use only!)',
keywords='Selenium, webautomation',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/kaliiiiiiiiii/Selenium-Driverless',
project_urls={
'Documentation': 'https://github.com/kaliiiiiiiiii/Selenium-Driverless',
'Bug Reports':
'https://github.com/kaliiiiiiiiii/Selenium-Driverless/issues',
'Source Code': 'https://github.com/kaliiiiiiiiii/Selenium-Driverless',
'LICENSE':'https://github.com/kaliiiiiiiiii/Selenium-Driverless/blob/master/LICENSE.md'
},
package_dir={'': 'src'},
packages=setuptools.find_namespace_packages(where='src'),
classifiers=[
# see https://pypi.org/classifiers/
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'License :: Free for non-commercial use',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Internet :: Proxy Servers',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP :: Browsers',
],
python_requires='>=3.8',
install_requires=requirements,
include_package_data=True,
extras_require={
'dev': ['check-manifest'],
# 'test': ['coverage'],
},
license='https://github.com/kaliiiiiiiiii/Selenium-Driverless/blob/master/LICENSE.md'
)