-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
57 lines (54 loc) · 1.42 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
53
54
55
56
57
from setuptools import setup, find_packages
setup(
name='scrapers_Larisa_M16',
version='0.0.1',
author='Larisa',
packages=find_packages(),
install_requires=[
'appdirs==1.4.4',
'async-generator==1.10',
'attrs==23.1.0',
'beautifulsoup4==4.12.2',
'bs4==0.0.1',
'certifi==2022.12.7',
'charset-normalizer==3.1.0',
'cssselect==1.2.0',
'exceptiongroup==1.1.1',
'fake-useragent==1.1.3',
'h11==0.14.0',
'idna==3.4',
'importlib-metadata==6.6.0',
'lxml==4.9.2',
'outcome==1.2.0',
'parse==1.19.0',
'pyee==8.2.2',
'PyMySQL==1.0.3',
'pyppeteer==1.0.2',
'pyquery==2.0.0',
'PySocks==1.7.1',
'requests==2.28.2',
'requests-html==0.10.0',
'selenium==4.10.0',
'six==1.16.0',
'sniffio==1.3.0',
'sortedcontainers==2.4.0',
'soupsieve==2.4.1',
'tqdm==4.65.0',
'trio==0.22.0',
'trio-websocket==0.10.3',
'urllib3==1.26.15',
'uuid==1.30',
'w3lib==2.1.1',
'webencodings==0.5.1',
'websockets==10.4',
'wsproto==1.2.0',
'zipp==3.15.0',
'cfscrape==2.1.1',
'pytest==7.4.3',
'pytest-xdist==3.3.1',
'allure-pytest==2.13.2',
'unidecode==1.3.8',
'webdriver-manager==4.0.1',
],
python_requires='>=3.6',
)