-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
65 lines (63 loc) · 2.55 KB
/
Copy pathsetup.py
File metadata and controls
65 lines (63 loc) · 2.55 KB
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
import os
from setuptools import setup, find_packages
long_description = ""
if os.path.exists("README.md"):
try:
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
except Exception:
long_description = "Production-grade automated Playwright integration and runtime optimizer for Android Termux"
setup(
name="termux-playwright",
version="1.80.4",
description="Production-grade Playwright & Chromium browser automation and stealth runtime optimizer for Android Termux (Dual-Engine Python & Node.js)",
long_description=long_description,
long_description_content_type="text/markdown",
author="uno-km (AMEVA Foundation)",
author_email="hosequelbo@gmail.com",
url="https://github.com/uno-km/termux-playwright",
project_urls={
"Documentation": "https://uno-km.github.io/termux-playwright/",
"npm Package": "https://www.npmjs.com/package/termux-playwright",
"Bug Tracker": "https://github.com/uno-km/termux-playwright/issues",
"Source": "https://github.com/uno-km/termux-playwright",
},
license="MIT",
keywords=["playwright", "termux", "android", "chromium", "automation", "web-scraping"],
packages=find_packages(),
package_data={
"termux_playwright": ["py.typed"],
},
include_package_data=True,
install_requires=[
"pyee>=8.1.0,<=13.0.0",
"typing-extensions>=4.0.0,<5.0.0",
],
extras_require={
"greenlet": ["greenlet>=3.1.1,<4.0.0"],
"playwright": ["playwright>=1.40.0"],
},
entry_points={
'console_scripts': [
'termux-playwright-install=termux_playwright.installer:run_installation_pipeline',
'termux-playwright-patch=termux_playwright.patcher:cli_patch_core_bundle',
'termux-playwright-doctor=termux_playwright.installer:doctor',
'termux-playwright-reap=termux_playwright.reaper:cli_reap_orphans',
],
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Environment :: Console",
"Topic :: Software Development :: Testing",
"Topic :: Internet :: WWW/HTTP :: Browsers",
"Intended Audience :: Developers",
],
python_requires=">=3.8",
)