auto-coder-web 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.
- auto_coder_web-0.1.0/PKG-INFO +34 -0
- auto_coder_web-0.1.0/README.md +22 -0
- auto_coder_web-0.1.0/setup.cfg +4 -0
- auto_coder_web-0.1.0/setup.py +48 -0
- auto_coder_web-0.1.0/src/auto_coder_web/__init__.py +0 -0
- auto_coder_web-0.1.0/src/auto_coder_web/auto_coder_runner.py +694 -0
- auto_coder_web-0.1.0/src/auto_coder_web/file_group.py +69 -0
- auto_coder_web-0.1.0/src/auto_coder_web/file_manager.py +114 -0
- auto_coder_web-0.1.0/src/auto_coder_web/hello.py +36 -0
- auto_coder_web-0.1.0/src/auto_coder_web/json_file_storage.py +44 -0
- auto_coder_web-0.1.0/src/auto_coder_web/proxy.py +532 -0
- auto_coder_web-0.1.0/src/auto_coder_web/terminal.py +259 -0
- auto_coder_web-0.1.0/src/auto_coder_web/version.py +1 -0
- auto_coder_web-0.1.0/src/auto_coder_web/web/asset-manifest.json +15 -0
- auto_coder_web-0.1.0/src/auto_coder_web/web/favicon.ico +0 -0
- auto_coder_web-0.1.0/src/auto_coder_web/web/index.html +1 -0
- auto_coder_web-0.1.0/src/auto_coder_web/web/logo192.png +0 -0
- auto_coder_web-0.1.0/src/auto_coder_web/web/logo512.png +0 -0
- auto_coder_web-0.1.0/src/auto_coder_web/web/manifest.json +25 -0
- auto_coder_web-0.1.0/src/auto_coder_web/web/robots.txt +3 -0
- auto_coder_web-0.1.0/src/auto_coder_web/web/static/css/main.0441fea8.css +6 -0
- auto_coder_web-0.1.0/src/auto_coder_web/web/static/css/main.0441fea8.css.map +1 -0
- auto_coder_web-0.1.0/src/auto_coder_web/web/static/js/453.8ab44547.chunk.js +2 -0
- auto_coder_web-0.1.0/src/auto_coder_web/web/static/js/453.8ab44547.chunk.js.map +1 -0
- auto_coder_web-0.1.0/src/auto_coder_web/web/static/js/main.9cc516f4.js +3 -0
- auto_coder_web-0.1.0/src/auto_coder_web/web/static/js/main.9cc516f4.js.LICENSE.txt +119 -0
- auto_coder_web-0.1.0/src/auto_coder_web/web/static/js/main.9cc516f4.js.map +1 -0
- auto_coder_web-0.1.0/src/auto_coder_web.egg-info/PKG-INFO +34 -0
- auto_coder_web-0.1.0/src/auto_coder_web.egg-info/SOURCES.txt +31 -0
- auto_coder_web-0.1.0/src/auto_coder_web.egg-info/dependency_links.txt +1 -0
- auto_coder_web-0.1.0/src/auto_coder_web.egg-info/entry_points.txt +2 -0
- auto_coder_web-0.1.0/src/auto_coder_web.egg-info/requires.txt +4 -0
- auto_coder_web-0.1.0/src/auto_coder_web.egg-info/top_level.txt +1 -0
@@ -0,0 +1,34 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: auto_coder_web
|
3
|
+
Version: 0.1.0
|
4
|
+
Summary: auto-coder.web: A Python Project
|
5
|
+
Author: allwefantasy
|
6
|
+
Classifier: Programming Language :: Python :: 3.9
|
7
|
+
Classifier: Programming Language :: Python :: 3.10
|
8
|
+
Classifier: Programming Language :: Python :: 3.11
|
9
|
+
Description-Content-Type: text/markdown
|
10
|
+
Requires-Dist: auto-coder
|
11
|
+
Requires-Dist: aiofiles
|
12
|
+
Requires-Dist: psutil
|
13
|
+
Requires-Dist: sse-starlette
|
14
|
+
|
15
|
+
# auto-coder.web
|
16
|
+
|
17
|
+
## 安装
|
18
|
+
|
19
|
+
```
|
20
|
+
pip install auto_coder_web
|
21
|
+
```
|
22
|
+
|
23
|
+
## 进入项目
|
24
|
+
|
25
|
+
```
|
26
|
+
cd <project_dir>
|
27
|
+
auto-coder.web
|
28
|
+
```
|
29
|
+
|
30
|
+
## 打开浏览器
|
31
|
+
|
32
|
+
http://localhost:8007
|
33
|
+
|
34
|
+
开始你的编程!
|
@@ -0,0 +1,48 @@
|
|
1
|
+
import os
|
2
|
+
from setuptools import find_packages
|
3
|
+
from setuptools import setup
|
4
|
+
|
5
|
+
folder = os.path.dirname(__file__)
|
6
|
+
version_path = os.path.join(folder, "src", "auto_coder_web", "version.py")
|
7
|
+
|
8
|
+
__version__ = None
|
9
|
+
with open(version_path) as f:
|
10
|
+
exec(f.read(), globals())
|
11
|
+
|
12
|
+
req_path = os.path.join(folder, "requirements.txt")
|
13
|
+
install_requires = []
|
14
|
+
if os.path.exists(req_path):
|
15
|
+
with open(req_path) as fp:
|
16
|
+
install_requires = [line.strip() for line in fp]
|
17
|
+
|
18
|
+
readme_path = os.path.join(folder, "README.md")
|
19
|
+
readme_contents = ""
|
20
|
+
if os.path.exists(readme_path):
|
21
|
+
with open(readme_path) as fp:
|
22
|
+
readme_contents = fp.read().strip()
|
23
|
+
|
24
|
+
setup(
|
25
|
+
name="auto_coder_web",
|
26
|
+
version=__version__,
|
27
|
+
description="auto-coder.web: A Python Project",
|
28
|
+
author="allwefantasy",
|
29
|
+
long_description=readme_contents,
|
30
|
+
long_description_content_type="text/markdown",
|
31
|
+
package_dir={"": "src"},
|
32
|
+
packages=find_packages("src"),
|
33
|
+
package_data={
|
34
|
+
"auto_coder_web": ["web/**/*"],
|
35
|
+
},
|
36
|
+
entry_points={
|
37
|
+
'console_scripts': [
|
38
|
+
'auto-coder.web = auto_coder_web.proxy:main',
|
39
|
+
],
|
40
|
+
},
|
41
|
+
install_requires=install_requires,
|
42
|
+
classifiers=[
|
43
|
+
"Programming Language :: Python :: 3.9",
|
44
|
+
"Programming Language :: Python :: 3.10",
|
45
|
+
"Programming Language :: Python :: 3.11",
|
46
|
+
],
|
47
|
+
requires_python=">=3.9",
|
48
|
+
)
|
File without changes
|