whitphx HF staff commited on
Commit
d79183c
·
1 Parent(s): a8780b6
Files changed (4) hide show
  1. .python-version +1 -0
  2. README.md +0 -0
  3. main.py +6 -0
  4. pyproject.toml +7 -0
.python-version ADDED
@@ -0,0 +1 @@
 
 
1
+ 3.13
README.md ADDED
File without changes
main.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ def main():
2
+ print("Hello from streamlit-webrtc-ice-config-experiment!")
3
+
4
+
5
+ if __name__ == "__main__":
6
+ main()
pyproject.toml ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ [project]
2
+ name = "streamlit-webrtc-ice-config-experiment"
3
+ version = "0.1.0"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ requires-python = ">=3.13"
7
+ dependencies = []