-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
81 lines (79 loc) · 2.27 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="sharingan",
version="0.0.5",
author="s045pd",
author_email="s045pd.x@gmail.com",
description="We will try to find your visible basic footprint from social media as much as possible",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pypa/sampleproject",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Framework :: AsyncIO",
],
python_requires=">=3.8",
install_requires=[
"appdirs==1.4.4",
"arrow==1.3.0",
"beautifulsoup4==4.12.3",
"bs4==0.0.2",
"certifi==2024.7.4",
"chardet==3.0.4",
"charset-normalizer==3.3.2",
"Click==7.0",
"cssselect==1.2.0",
"dateparser==1.2.0",
"decorator==5.1.1",
"fake-useragent==1.5.1",
"h11==0.9.0",
"h2==3.2.0",
"hpack==3.0.0",
"hstspreload==2024.7.1",
"httpcore==0.9.1",
"httpx==0.13.3",
"hyperframe==5.2.0",
"idna==2.10",
"importlib_metadata==8.0.0",
"lxml==5.2.2",
"lxml_html_clean==0.1.1",
"moment==0.8.2",
"parse==1.20.2",
"py==1.11.0",
"pyee==11.1.0",
"pypeln==0.4.4",
"pyppeteer==2.0.0",
"pyquery==2.0.0",
"python-box==4.2.3",
"python-dateutil==2.9.0.post0",
"pytz==2024.1",
"regex==2024.5.15",
"requests==2.32.3",
"requests-html==0.10.0",
"retry==0.9.2",
"rfc3986==1.5.0",
"ruamel.yaml==0.18.6",
"ruamel.yaml.clib==0.2.8",
"six==1.16.0",
"sniffio==1.3.1",
"soupsieve==2.5",
"stopit==1.1.2",
"termcolor==1.1.0",
"times==0.7",
"toml==0.10.2",
"tqdm==4.66.4",
"types-python-dateutil==2.9.0.20240316",
"typing_extensions==4.12.2",
"tzlocal==5.2",
"urllib3==1.26.19",
"w3lib==2.2.1",
"websockets==10.4",
"zipp==3.19.2"
],
)