Revize e61c422d
Přidáno uživatelem Martin Forejt před asi 4 roky(ů)
.gitignore | ||
---|---|---|
1 |
# Created by .ignore support plugin (hsz.mobi) |
|
2 |
### Python template |
|
3 |
# Byte-compiled / optimized / DLL files |
|
4 |
__pycache__/ |
|
5 |
*.py[cod] |
|
6 |
*$py.class |
|
7 |
|
|
8 |
# C extensions |
|
9 |
*.so |
|
10 |
|
|
11 |
# Distribution / packaging |
|
12 |
.Python |
|
13 |
env/ |
|
14 |
build/ |
|
15 |
develop-eggs/ |
|
16 |
dist/ |
|
17 |
downloads/ |
|
18 |
eggs/ |
|
19 |
.eggs/ |
|
20 |
lib/ |
|
21 |
lib64/ |
|
22 |
parts/ |
|
23 |
sdist/ |
|
24 |
var/ |
|
25 |
wheels/ |
|
26 |
*.egg-info/ |
|
27 |
.installed.cfg |
|
28 |
*.egg |
|
29 |
|
|
30 |
# PyInstaller |
|
31 |
# Usually these files are written by a python script from a template |
|
32 |
# before PyInstaller builds the exe, so as to inject date/other infos into it. |
|
33 |
*.manifest |
|
34 |
*.spec |
|
35 |
|
|
36 |
# Installer logs |
|
37 |
pip-log.txt |
|
38 |
pip-delete-this-directory.txt |
|
39 |
|
|
40 |
# Unit test / coverage reports |
|
41 |
htmlcov/ |
|
42 |
.tox/ |
|
43 |
.coverage |
|
44 |
.coverage.* |
|
45 |
.cache |
|
46 |
nosetests.xml |
|
47 |
coverage.xml |
|
48 |
*,cover |
|
49 |
.hypothesis/ |
|
50 |
|
|
51 |
# Translations |
|
52 |
*.mo |
|
53 |
*.pot |
|
54 |
|
|
55 |
# Django stuff: |
|
56 |
*.log |
|
57 |
local_settings.py |
|
58 |
|
|
59 |
# Flask stuff: |
|
60 |
instance/ |
|
61 |
.webassets-cache |
|
62 |
|
|
63 |
# Scrapy stuff: |
|
64 |
.scrapy |
|
65 |
|
|
66 |
# Sphinx documentation |
|
67 |
docs/_build/ |
|
68 |
|
|
69 |
# PyBuilder |
|
70 |
target/ |
|
71 |
|
|
72 |
# Jupyter Notebook |
|
73 |
.ipynb_checkpoints |
|
74 |
|
|
75 |
# pyenv |
|
76 |
.python-version |
|
77 |
|
|
78 |
# celery beat schedule file |
|
79 |
celerybeat-schedule |
|
80 |
|
|
81 |
# SageMath parsed files |
|
82 |
*.sage.py |
|
83 |
|
|
84 |
# dotenv |
|
85 |
.env |
|
86 |
|
|
87 |
# virtualenv |
|
88 |
.venv |
|
89 |
venv/ |
|
90 |
ENV/ |
|
91 |
|
|
92 |
# Spyder project settings |
|
93 |
.spyderproject |
|
94 |
|
|
95 |
# Rope project settings |
|
96 |
.ropeproject |
|
97 |
|
|
98 |
.idea/ |
README.md | ||
---|---|---|
1 |
# Vochomůrka |
|
2 |
|
|
1 |
# Konfigurovatelný dashboard zobrazování senzorových dat (KIV) - Vochomůrka |
pyproject.toml | ||
---|---|---|
1 |
[tool.poetry] |
|
2 |
name = "aswi2021vochomurka" |
|
3 |
version = "0.1.0" |
|
4 |
description = "" |
|
5 |
authors = ["Tym Vochomurka"] |
|
6 |
|
|
7 |
[tool.poetry.dependencies] |
|
8 |
python = "^3.8" |
|
9 |
|
|
10 |
[tool.poetry.dev-dependencies] |
|
11 |
|
|
12 |
[build-system] |
|
13 |
requires = ["poetry-core>=1.0.0"] |
|
14 |
build-backend = "poetry.core.masonry.api" |
src/main.py | ||
---|---|---|
1 |
print("hello world Vochomurka") |
Také k dispozici: Unified diff
initial commit