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.
Files changed (33) hide show
  1. auto_coder_web-0.1.0/PKG-INFO +34 -0
  2. auto_coder_web-0.1.0/README.md +22 -0
  3. auto_coder_web-0.1.0/setup.cfg +4 -0
  4. auto_coder_web-0.1.0/setup.py +48 -0
  5. auto_coder_web-0.1.0/src/auto_coder_web/__init__.py +0 -0
  6. auto_coder_web-0.1.0/src/auto_coder_web/auto_coder_runner.py +694 -0
  7. auto_coder_web-0.1.0/src/auto_coder_web/file_group.py +69 -0
  8. auto_coder_web-0.1.0/src/auto_coder_web/file_manager.py +114 -0
  9. auto_coder_web-0.1.0/src/auto_coder_web/hello.py +36 -0
  10. auto_coder_web-0.1.0/src/auto_coder_web/json_file_storage.py +44 -0
  11. auto_coder_web-0.1.0/src/auto_coder_web/proxy.py +532 -0
  12. auto_coder_web-0.1.0/src/auto_coder_web/terminal.py +259 -0
  13. auto_coder_web-0.1.0/src/auto_coder_web/version.py +1 -0
  14. auto_coder_web-0.1.0/src/auto_coder_web/web/asset-manifest.json +15 -0
  15. auto_coder_web-0.1.0/src/auto_coder_web/web/favicon.ico +0 -0
  16. auto_coder_web-0.1.0/src/auto_coder_web/web/index.html +1 -0
  17. auto_coder_web-0.1.0/src/auto_coder_web/web/logo192.png +0 -0
  18. auto_coder_web-0.1.0/src/auto_coder_web/web/logo512.png +0 -0
  19. auto_coder_web-0.1.0/src/auto_coder_web/web/manifest.json +25 -0
  20. auto_coder_web-0.1.0/src/auto_coder_web/web/robots.txt +3 -0
  21. auto_coder_web-0.1.0/src/auto_coder_web/web/static/css/main.0441fea8.css +6 -0
  22. auto_coder_web-0.1.0/src/auto_coder_web/web/static/css/main.0441fea8.css.map +1 -0
  23. auto_coder_web-0.1.0/src/auto_coder_web/web/static/js/453.8ab44547.chunk.js +2 -0
  24. auto_coder_web-0.1.0/src/auto_coder_web/web/static/js/453.8ab44547.chunk.js.map +1 -0
  25. auto_coder_web-0.1.0/src/auto_coder_web/web/static/js/main.9cc516f4.js +3 -0
  26. auto_coder_web-0.1.0/src/auto_coder_web/web/static/js/main.9cc516f4.js.LICENSE.txt +119 -0
  27. auto_coder_web-0.1.0/src/auto_coder_web/web/static/js/main.9cc516f4.js.map +1 -0
  28. auto_coder_web-0.1.0/src/auto_coder_web.egg-info/PKG-INFO +34 -0
  29. auto_coder_web-0.1.0/src/auto_coder_web.egg-info/SOURCES.txt +31 -0
  30. auto_coder_web-0.1.0/src/auto_coder_web.egg-info/dependency_links.txt +1 -0
  31. auto_coder_web-0.1.0/src/auto_coder_web.egg-info/entry_points.txt +2 -0
  32. auto_coder_web-0.1.0/src/auto_coder_web.egg-info/requires.txt +4 -0
  33. 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,22 @@
1
+ # auto-coder.web
2
+
3
+ ## 安装
4
+
5
+ ```
6
+ pip install auto_coder_web
7
+ ```
8
+
9
+ ## 进入项目
10
+
11
+ ```
12
+ cd <project_dir>
13
+ auto-coder.web
14
+ ```
15
+
16
+ ## 打开浏览器
17
+
18
+ http://localhost:8007
19
+
20
+ 开始你的编程!
21
+
22
+
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -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