cyyeh commited on
Commit
d853fa5
·
1 Parent(s): eea50b3

add poetry

Browse files
Files changed (5) hide show
  1. .gitignore +1 -0
  2. Makefile +5 -0
  3. poetry.lock +0 -0
  4. pyproject.toml +18 -0
  5. requirements.txt +38 -2
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ .DS_Store
Makefile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ run:
2
+ poetry run streamlit run src/streamlit_app.py
3
+
4
+ deps:
5
+ poetry export --without-hashes --format=requirements.txt > requirements.txt
poetry.lock ADDED
The diff for this file is too large to render. See raw diff
 
pyproject.toml ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [tool.poetry]
2
+ name = "wrenai-cloud-api-demo"
3
+ version = "0.1.0"
4
+ description = ""
5
+ authors = ["Wren AI <dev@getwren.ai>"]
6
+ license = "MIT"
7
+ readme = "README.md"
8
+ package-mode = false
9
+
10
+ [tool.poetry.dependencies]
11
+ python = ">=3.12,<3.13"
12
+ streamlit = "^1.46.1"
13
+ requests = "^2.32.4"
14
+
15
+
16
+ [build-system]
17
+ requires = ["poetry-core"]
18
+ build-backend = "poetry.core.masonry.api"
requirements.txt CHANGED
@@ -1,2 +1,38 @@
1
- streamlit
2
- requests
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ altair==5.5.0 ; python_version >= "3.12" and python_version < "3.13"
2
+ attrs==25.3.0 ; python_version >= "3.12" and python_version < "3.13"
3
+ blinker==1.9.0 ; python_version >= "3.12" and python_version < "3.13"
4
+ cachetools==6.1.0 ; python_version >= "3.12" and python_version < "3.13"
5
+ certifi==2025.6.15 ; python_version >= "3.12" and python_version < "3.13"
6
+ charset-normalizer==3.4.2 ; python_version >= "3.12" and python_version < "3.13"
7
+ click==8.2.1 ; python_version >= "3.12" and python_version < "3.13"
8
+ colorama==0.4.6 ; python_version >= "3.12" and python_version < "3.13" and platform_system == "Windows"
9
+ gitdb==4.0.12 ; python_version >= "3.12" and python_version < "3.13"
10
+ gitpython==3.1.44 ; python_version >= "3.12" and python_version < "3.13"
11
+ idna==3.10 ; python_version >= "3.12" and python_version < "3.13"
12
+ jinja2==3.1.6 ; python_version >= "3.12" and python_version < "3.13"
13
+ jsonschema-specifications==2025.4.1 ; python_version >= "3.12" and python_version < "3.13"
14
+ jsonschema==4.24.0 ; python_version >= "3.12" and python_version < "3.13"
15
+ markupsafe==3.0.2 ; python_version >= "3.12" and python_version < "3.13"
16
+ narwhals==1.44.0 ; python_version >= "3.12" and python_version < "3.13"
17
+ numpy==2.3.1 ; python_version >= "3.12" and python_version < "3.13"
18
+ packaging==25.0 ; python_version >= "3.12" and python_version < "3.13"
19
+ pandas==2.3.0 ; python_version >= "3.12" and python_version < "3.13"
20
+ pillow==11.2.1 ; python_version >= "3.12" and python_version < "3.13"
21
+ protobuf==6.31.1 ; python_version >= "3.12" and python_version < "3.13"
22
+ pyarrow==20.0.0 ; python_version >= "3.12" and python_version < "3.13"
23
+ pydeck==0.9.1 ; python_version >= "3.12" and python_version < "3.13"
24
+ python-dateutil==2.9.0.post0 ; python_version >= "3.12" and python_version < "3.13"
25
+ pytz==2025.2 ; python_version >= "3.12" and python_version < "3.13"
26
+ referencing==0.36.2 ; python_version >= "3.12" and python_version < "3.13"
27
+ requests==2.32.4 ; python_version >= "3.12" and python_version < "3.13"
28
+ rpds-py==0.25.1 ; python_version >= "3.12" and python_version < "3.13"
29
+ six==1.17.0 ; python_version >= "3.12" and python_version < "3.13"
30
+ smmap==5.0.2 ; python_version >= "3.12" and python_version < "3.13"
31
+ streamlit==1.46.1 ; python_version >= "3.12" and python_version < "3.13"
32
+ tenacity==9.1.2 ; python_version >= "3.12" and python_version < "3.13"
33
+ toml==0.10.2 ; python_version >= "3.12" and python_version < "3.13"
34
+ tornado==6.5.1 ; python_version >= "3.12" and python_version < "3.13"
35
+ typing-extensions==4.14.0 ; python_version >= "3.12" and python_version < "3.13"
36
+ tzdata==2025.2 ; python_version >= "3.12" and python_version < "3.13"
37
+ urllib3==2.5.0 ; python_version >= "3.12" and python_version < "3.13"
38
+ watchdog==6.0.0 ; python_version >= "3.12" and python_version < "3.13" and platform_system != "Darwin"