-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
51 lines (46 loc) · 1.79 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
import setuptools
requirements = ['selenium', 'requests', "selenium-profiles>=2.2.7.3", "websockets"]
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name='selenium_injector',
author='Aurin Aegerter',
author_email='aurinliun@gmx.ch',
description='inject javascript into chrome',
keywords='Selenium,interception, proxy, webautomation',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/kaliiiiiiiiii/Selenium-Injector',
project_urls={
'Documentation': 'https://github.com/kaliiiiiiiiii/Selenium-Injector',
'Bug Reports':
'https://github.com/kaliiiiiiiiii/Selenium-Injector/issues',
'Source Code': 'https://github.com/kaliiiiiiiiii/Selenium-Injector',
},
package_dir={'': 'src'},
packages=setuptools.find_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.7',
'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.7',
install_requires=requirements,
include_package_data=True,
extras_require={
'dev': ['check-manifest'],
# 'test': ['coverage'],
},
)