browser-farm 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- browser_farm-0.1.0/MANIFEST.in +2 -0
- browser_farm-0.1.0/PKG-INFO +19 -0
- browser_farm-0.1.0/pyproject.toml +30 -0
- browser_farm-0.1.0/setup.cfg +4 -0
- browser_farm-0.1.0/setup.py +27 -0
- browser_farm-0.1.0/src/browser_farm.egg-info/PKG-INFO +19 -0
- browser_farm-0.1.0/src/browser_farm.egg-info/SOURCES.txt +8 -0
- browser_farm-0.1.0/src/browser_farm.egg-info/dependency_links.txt +1 -0
- browser_farm-0.1.0/src/browser_farm.egg-info/requires.txt +11 -0
- browser_farm-0.1.0/src/browser_farm.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: browser-farm
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A distributed browser automation platform for developers. Manage multiple browser contexts across multiple servers with live monitoring, manual control, and custom scripts.
|
|
5
|
+
License: MIT
|
|
6
|
+
Project-URL: Homepage, https://github.com/RebornBeat/Browser-Farm
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: fastapi>=0.109.0
|
|
10
|
+
Requires-Dist: uvicorn[standard]>=0.27.0
|
|
11
|
+
Requires-Dist: playwright>=1.41.0
|
|
12
|
+
Requires-Dist: psutil>=5.9.8
|
|
13
|
+
Requires-Dist: python-multipart>=0.0.6
|
|
14
|
+
Requires-Dist: python-dotenv>=1.0.0
|
|
15
|
+
Requires-Dist: pydantic>=2.5.3
|
|
16
|
+
Requires-Dist: pydantic-settings>=2.1.0
|
|
17
|
+
Requires-Dist: websockets>=12.0
|
|
18
|
+
Requires-Dist: aiofiles>=23.2.1
|
|
19
|
+
Requires-Dist: pillow>=10.2.0
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "browser-farm"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "A distributed browser automation platform for developers. Manage multiple browser contexts across multiple servers with live monitoring, manual control, and custom scripts."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "MIT"}
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
dependencies = [
|
|
13
|
+
"fastapi>=0.109.0",
|
|
14
|
+
"uvicorn[standard]>=0.27.0",
|
|
15
|
+
"playwright>=1.41.0",
|
|
16
|
+
"psutil>=5.9.8",
|
|
17
|
+
"python-multipart>=0.0.6",
|
|
18
|
+
"python-dotenv>=1.0.0",
|
|
19
|
+
"pydantic>=2.5.3",
|
|
20
|
+
"pydantic-settings>=2.1.0",
|
|
21
|
+
"websockets>=12.0",
|
|
22
|
+
"aiofiles>=23.2.1",
|
|
23
|
+
"pillow>=10.2.0",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[project.urls]
|
|
27
|
+
Homepage = "https://github.com/RebornBeat/Browser-Farm"
|
|
28
|
+
|
|
29
|
+
[tool.setuptools.packages.find]
|
|
30
|
+
where = ["src"]
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="browser-farm",
|
|
5
|
+
version="0.1.0",
|
|
6
|
+
packages=find_packages(where="src"),
|
|
7
|
+
install_requires=[
|
|
8
|
+
"fastapi>=0.109.0",
|
|
9
|
+
"uvicorn[standard]>=0.27.0",
|
|
10
|
+
"playwright>=1.41.0",
|
|
11
|
+
"psutil>=5.9.8",
|
|
12
|
+
"python-multipart>=0.0.6",
|
|
13
|
+
"python-dotenv>=1.0.0",
|
|
14
|
+
"pydantic>=2.5.3",
|
|
15
|
+
"pydantic-settings>=2.1.0",
|
|
16
|
+
"websockets>=12.0",
|
|
17
|
+
"aiofiles>=23.2.1",
|
|
18
|
+
"pillow>=10.2.0",
|
|
19
|
+
],
|
|
20
|
+
package_dir={"": "src"},
|
|
21
|
+
include_package_data=True,
|
|
22
|
+
entry_points={
|
|
23
|
+
"console_scripts": [
|
|
24
|
+
"browser-farm=browser_farm.server:main"
|
|
25
|
+
],
|
|
26
|
+
},
|
|
27
|
+
)
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: browser-farm
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A distributed browser automation platform for developers. Manage multiple browser contexts across multiple servers with live monitoring, manual control, and custom scripts.
|
|
5
|
+
License: MIT
|
|
6
|
+
Project-URL: Homepage, https://github.com/RebornBeat/Browser-Farm
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: fastapi>=0.109.0
|
|
10
|
+
Requires-Dist: uvicorn[standard]>=0.27.0
|
|
11
|
+
Requires-Dist: playwright>=1.41.0
|
|
12
|
+
Requires-Dist: psutil>=5.9.8
|
|
13
|
+
Requires-Dist: python-multipart>=0.0.6
|
|
14
|
+
Requires-Dist: python-dotenv>=1.0.0
|
|
15
|
+
Requires-Dist: pydantic>=2.5.3
|
|
16
|
+
Requires-Dist: pydantic-settings>=2.1.0
|
|
17
|
+
Requires-Dist: websockets>=12.0
|
|
18
|
+
Requires-Dist: aiofiles>=23.2.1
|
|
19
|
+
Requires-Dist: pillow>=10.2.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|