Skip to content

Commit 3cc6cc6

Browse files
committed
Initial commit
0 parents  commit 3cc6cc6

File tree

17 files changed

+46235
-0
lines changed

17 files changed

+46235
-0
lines changed

.gitignore

Lines changed: 273 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,273 @@
1+
# Streamlit
2+
.streamlit/*
3+
!.streamlit/config.toml
4+
!*/frontend/.env
5+
6+
# Visual Studio Code
7+
.vscode/*
8+
#!.vscode/settings.json
9+
!.vscode/tasks.json
10+
!.vscode/launch.json
11+
!.vscode/extensions.json
12+
*.code-workspace
13+
14+
# Local History for Visual Studio Code
15+
.history/
16+
17+
# Byte-compiled / optimized / DLL files
18+
__pycache__/
19+
*.py[cod]
20+
*$py.class
21+
22+
# C extensions
23+
*.so
24+
25+
# Distribution / packaging
26+
.Python
27+
build/
28+
develop-eggs/
29+
dist/
30+
downloads/
31+
eggs/
32+
.eggs/
33+
lib/
34+
lib64/
35+
parts/
36+
sdist/
37+
var/
38+
wheels/
39+
share/python-wheels/
40+
*.egg-info/
41+
.installed.cfg
42+
*.egg
43+
MANIFEST
44+
45+
# PyInstaller
46+
# Usually these files are written by a python script from a template
47+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
48+
*.manifest
49+
*.spec
50+
51+
# Installer logs
52+
pip-log.txt
53+
pip-delete-this-directory.txt
54+
55+
# Unit test / coverage reports
56+
htmlcov/
57+
.tox/
58+
.nox/
59+
.coverage
60+
.coverage.*
61+
.cache
62+
nosetests.xml
63+
coverage.xml
64+
*.cover
65+
*.py,cover
66+
.hypothesis/
67+
.pytest_cache/
68+
cover/
69+
70+
# Translations
71+
*.mo
72+
*.pot
73+
74+
# Django stuff:
75+
*.log
76+
local_settings.py
77+
db.sqlite3
78+
db.sqlite3-journal
79+
80+
# Flask stuff:
81+
instance/
82+
.webassets-cache
83+
84+
# Scrapy stuff:
85+
.scrapy
86+
87+
# Sphinx documentation
88+
docs/_build/
89+
90+
# PyBuilder
91+
.pybuilder/
92+
target/
93+
94+
# Jupyter Notebook
95+
.ipynb_checkpoints
96+
97+
# IPython
98+
profile_default/
99+
ipython_config.py
100+
101+
# pyenv
102+
# For a library or package, you might want to ignore these files since the code is
103+
# intended to run in multiple environments; otherwise, check them in:
104+
.python-version
105+
106+
# pipenv
107+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
108+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
109+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
110+
# install all needed dependencies.
111+
#Pipfile.lock
112+
113+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
114+
__pypackages__/
115+
116+
# Celery stuff
117+
celerybeat-schedule
118+
celerybeat.pid
119+
120+
# SageMath parsed files
121+
*.sage.py
122+
123+
# Environments
124+
.env
125+
.venv
126+
env/
127+
venv/
128+
ENV/
129+
env.bak/
130+
venv.bak/
131+
132+
# Spyder project settings
133+
.spyderproject
134+
.spyproject
135+
136+
# Rope project settings
137+
.ropeproject
138+
139+
# mkdocs documentation
140+
/site
141+
142+
# mypy
143+
.mypy_cache/
144+
.dmypy.json
145+
dmypy.json
146+
147+
# Pyre type checker
148+
.pyre/
149+
150+
# pytype static type analyzer
151+
.pytype/
152+
153+
# Cython debug symbols
154+
cython_debug/
155+
156+
# Logs
157+
logs
158+
*.log
159+
npm-debug.log*
160+
yarn-debug.log*
161+
yarn-error.log*
162+
lerna-debug.log*
163+
164+
# Diagnostic reports (https://nodejs.org/api/report.html)
165+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
166+
167+
# Runtime data
168+
pids
169+
*.pid
170+
*.seed
171+
*.pid.lock
172+
173+
# Directory for instrumented libs generated by jscoverage/JSCover
174+
lib-cov
175+
176+
# Coverage directory used by tools like istanbul
177+
coverage
178+
*.lcov
179+
180+
# nyc test coverage
181+
.nyc_output
182+
183+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
184+
.grunt
185+
186+
# Bower dependency directory (https://bower.io/)
187+
bower_components
188+
189+
# node-waf configuration
190+
.lock-wscript
191+
192+
# Compiled binary addons (https://nodejs.org/api/addons.html)
193+
build/Release
194+
195+
# Dependency directories
196+
node_modules/
197+
jspm_packages/
198+
199+
# Snowpack dependency directory (https://snowpack.dev/)
200+
web_modules/
201+
202+
# TypeScript cache
203+
*.tsbuildinfo
204+
205+
# Optional npm cache directory
206+
.npm
207+
208+
# Optional eslint cache
209+
.eslintcache
210+
211+
# Microbundle cache
212+
.rpt2_cache/
213+
.rts2_cache_cjs/
214+
.rts2_cache_es/
215+
.rts2_cache_umd/
216+
217+
# Optional REPL history
218+
.node_repl_history
219+
220+
# Output of 'npm pack'
221+
*.tgz
222+
223+
# Yarn Integrity file
224+
.yarn-integrity
225+
226+
# dotenv environment variables file
227+
.env
228+
.env.test
229+
230+
# parcel-bundler cache (https://parceljs.org/)
231+
.cache
232+
.parcel-cache
233+
234+
# Next.js build output
235+
.next
236+
out
237+
238+
# Nuxt.js build / generate output
239+
.nuxt
240+
dist
241+
242+
# Gatsby files
243+
.cache/
244+
# Comment in the public line in if your project uses Gatsby and not Next.js
245+
# https://nextjs.org/blog/next-9-1#public-directory-support
246+
# public
247+
248+
# vuepress build output
249+
.vuepress/dist
250+
251+
# Serverless directories
252+
.serverless/
253+
254+
# FuseBox cache
255+
.fusebox/
256+
257+
# DynamoDB Local files
258+
.dynamodb/
259+
260+
# TernJS port file
261+
.tern-port
262+
263+
# Stores VSCode versions used for testing VSCode extensions
264+
.vscode-test
265+
266+
# yarn v2
267+
.yarn/cache
268+
.yarn/unplugged
269+
.yarn/build-state.yml
270+
.yarn/install-state.gz
271+
.pnp.*
272+
273+
/.idea/

LICENSE

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2018-2021 Streamlit Inc.
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19+
SOFTWARE.

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
recursive-include streamlit_condition_tree/frontend/build *

0 commit comments

Comments
 (0)