forked from akwin1234/damru
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 786 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (27 loc) · 786 Bytes
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
from setuptools import setup, find_packages
setup(
name="damru",
version="0.1.0",
packages=find_packages(include=["damru*"]),
package_data={
"damru.playwright_patch": ["*.js"],
"damru.wsl_kernel": ["wsl2-kernel-*", "*.config", "SHA256SUMS", "README.md", "source_metadata/*"],
"damru.assets": ["magisk.apk", "libfakemem.c"],
"damru.ui": ["static/*"],
},
install_requires=[
"playwright>=1.40,<1.60",
"requests>=2.28",
"pysocks>=1.7",
"websockets>=12",
],
extras_require={
"dev": ["pytest", "pytest-asyncio", "aiohttp"],
},
entry_points={
"console_scripts": [
"damru=damru.cli:main",
"damru-benchmark=damru.benchmark:main",
],
},
)