mirror of
https://github.com/PhoenixTwoFive/karaoqueue.git
synced 2025-05-18 18:41:48 +02:00
Compare commits
4 Commits
538f0a3c23
...
eb0cfcf4cb
Author | SHA1 | Date | |
---|---|---|---|
eb0cfcf4cb | |||
6f1628546e | |||
|
28d965ee41 | ||
|
68c5771fc6 |
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@ -1,5 +1,4 @@
|
||||
{
|
||||
"python.pythonPath": "/usr/bin/python",
|
||||
"python.testing.unittestArgs": [
|
||||
"-v",
|
||||
"-s",
|
||||
@ -9,8 +8,6 @@
|
||||
],
|
||||
"python.testing.pytestEnabled": false,
|
||||
"python.testing.unittestEnabled": true,
|
||||
"python.linting.pylintEnabled": false,
|
||||
"python.linting.flake8Enabled": true,
|
||||
"emmet.includeLanguages": {
|
||||
"django-html": "html"
|
||||
}
|
||||
|
@ -4,45 +4,45 @@ verify_ssl = true
|
||||
name = "pypi"
|
||||
|
||||
[packages]
|
||||
autopep8 = "==2.0.2"
|
||||
beautifulsoup4 = "==4.12.0"
|
||||
bs4 = "==0.0.1"
|
||||
certifi = "==2022.12.7"
|
||||
charset-normalizer = "==3.1.0"
|
||||
click = "==8.1.3"
|
||||
flake8 = "==6.0.0"
|
||||
flask = "==2.2.3"
|
||||
flask-basicauth = "==0.2.0"
|
||||
greenlet = "==2.0.2"
|
||||
gunicorn = "==20.1.0"
|
||||
idna = "==3.4"
|
||||
itsdangerous = "==2.1.2"
|
||||
jinja2 = "==3.1.2"
|
||||
mariadb = "==1.1.6"
|
||||
markupsafe = "==2.1.2"
|
||||
mccabe = "==0.7.0"
|
||||
mysql = "==0.0.3"
|
||||
mysqlclient = "==2.1.1"
|
||||
numpy = "==1.24.2"
|
||||
packaging = "==23.0"
|
||||
pandas = "==1.5.3"
|
||||
pycodestyle = "==2.10.0"
|
||||
pyflakes = "==3.0.1"
|
||||
pymysql = "==1.0.3"
|
||||
python-dateutil = "==2.8.2"
|
||||
pytz = "==2023.3"
|
||||
requests = "==2.28.2"
|
||||
six = "==1.16.0"
|
||||
soupsieve = "==2.4"
|
||||
sqlalchemy = "==2.0.7"
|
||||
toml = "==0.10.2"
|
||||
tomli = "==2.0.1"
|
||||
typing-extensions = "==4.5.0"
|
||||
urllib3 = "==1.26.15"
|
||||
werkzeug = "==2.2.3"
|
||||
autopep8 = "*"
|
||||
beautifulsoup4 = "*"
|
||||
bs4 = "*"
|
||||
certifi = "*"
|
||||
charset-normalizer = "*"
|
||||
click = "*"
|
||||
flake8 = "*"
|
||||
flask = "*"
|
||||
flask-basicauth = "*"
|
||||
greenlet = "*"
|
||||
gunicorn = "*"
|
||||
idna = "*"
|
||||
itsdangerous = "*"
|
||||
jinja2 = "*"
|
||||
mariadb = "*"
|
||||
markupsafe = "*"
|
||||
mccabe = "*"
|
||||
mysql = "*"
|
||||
mysqlclient = "*"
|
||||
numpy = "*"
|
||||
packaging = "*"
|
||||
pandas = "*"
|
||||
pycodestyle = "*"
|
||||
pyflakes = "*"
|
||||
pymysql = "*"
|
||||
python-dateutil = "*"
|
||||
pytz = "*"
|
||||
requests = "*"
|
||||
six = "*"
|
||||
soupsieve = "*"
|
||||
sqlalchemy = "*"
|
||||
toml = "*"
|
||||
tomli = "*"
|
||||
typing-extensions = "*"
|
||||
urllib3 = "*"
|
||||
werkzeug = "*"
|
||||
|
||||
[dev-packages]
|
||||
|
||||
[requires]
|
||||
python_version = "3.9"
|
||||
python_full_version = "3.9.17"
|
||||
python_version = "3.11"
|
||||
python_full_version = "3.11.7"
|
||||
|
@ -1 +0,0 @@
|
||||
web: gunicorn wsgi:app
|
@ -1,36 +1,40 @@
|
||||
autopep8~=2.0.2
|
||||
beautifulsoup4~=4.12.0
|
||||
bs4~=0.0.1
|
||||
certifi~=2022.12.7
|
||||
charset-normalizer~=3.1.0
|
||||
click~=8.1.3
|
||||
flake8~=6.0.0
|
||||
Flask~=2.3.2
|
||||
Flask-BasicAuth~=0.2.0
|
||||
greenlet~=2.0.2
|
||||
gunicorn~=20.1.0
|
||||
idna~=3.4
|
||||
itsdangerous~=2.1.2
|
||||
Jinja2~=3.1.2
|
||||
mariadb~=1.1.6
|
||||
MarkupSafe~=2.1.2
|
||||
mccabe~=0.7.0
|
||||
mysql~=0.0.3
|
||||
mysqlclient~=2.1.1
|
||||
numpy~=1.24.2
|
||||
packaging~=23.0
|
||||
pandas~=1.5.3
|
||||
pycodestyle~=2.10.0
|
||||
pyflakes~=3.0.1
|
||||
PyMySQL~=1.0.3
|
||||
python-dateutil~=2.8.2
|
||||
pytz~=2023.3
|
||||
requests~=2.31.0
|
||||
six~=1.16.0
|
||||
soupsieve~=2.4
|
||||
SQLAlchemy~=2.0.7
|
||||
toml~=0.10.2
|
||||
tomli~=2.0.1
|
||||
typing_extensions~=4.5.0
|
||||
urllib3~=1.26.15
|
||||
Werkzeug~=3.0.0
|
||||
autopep8==2.0.4
|
||||
beautifulsoup4==4.12.3
|
||||
blinker==1.7.0
|
||||
bs4==0.0.2
|
||||
certifi==2024.2.2
|
||||
charset-normalizer==3.3.2
|
||||
click==8.1.7
|
||||
flake8==7.0.0
|
||||
Flask==3.0.2
|
||||
Flask-BasicAuth==0.2.0
|
||||
greenlet==3.0.3
|
||||
gunicorn==21.2.0
|
||||
idna==3.6
|
||||
itsdangerous==2.1.2
|
||||
Jinja2==3.1.3
|
||||
mariadb==1.1.10
|
||||
MarkupSafe==2.1.5
|
||||
mccabe==0.7.0
|
||||
mysql==0.0.3
|
||||
mysqlclient==2.2.4
|
||||
numpy==1.26.4
|
||||
packaging==23.2
|
||||
pandas==2.2.0
|
||||
pipfile-upgrade==0.0.2
|
||||
pycodestyle==2.11.1
|
||||
pyflakes==3.2.0
|
||||
PyMySQL==1.1.0
|
||||
python-dateutil==2.8.2
|
||||
pytz==2024.1
|
||||
requests==2.31.0
|
||||
six==1.16.0
|
||||
soupsieve==2.5
|
||||
SQLAlchemy==2.0.27
|
||||
toml==0.10.2
|
||||
tomli==2.0.1
|
||||
tomlkit==0.12.3
|
||||
typing_extensions==4.9.0
|
||||
tzdata==2024.1
|
||||
urllib3==2.2.0
|
||||
Werkzeug==3.0.1
|
||||
|
Loading…
x
Reference in New Issue
Block a user