lock packages version to current

This commit is contained in:
2023-01-18 00:36:00 +03:00
parent 2120303669
commit 59e88e4631
3 changed files with 540 additions and 407 deletions

View File

@@ -1,62 +1,63 @@
[tool.poetry]
name = "create requirements"
name = "main packages"
version = "1.0.2"
description = "poetry requiremts creation"
authors = ["Dmitry Afanasyev <Balshbox@gmail.com>"]
[tool.poetry.dependencies]
Python="3.11.1"
aiohttp = "*"
aiosignal = "*"
alembic = "*"
bcrypt = "*"
click = "*"
cookiecutter = "*"
coverage = "*"
decorator = "*"
Django = "*"
factory-boy = "*"
Faker = "*"
fastapi = "*"
httpx = "*"
identify = "*"
Jinja2 = "*"
keyring = "*"
loguru = "*"
MouseInfo = "*"
numpy = "*"
orjson = "*"
Pillow = "*"
pre-commit = "*"
prompt-toolkit = "*"
psycopg2-binary = "*"
PyAutoGUI = "*"
pydantic = "*"
Pygments = "*"
PyQt6 = "*"
python-decouple = "*"
pytz = "*"
PyYAML = "*"
requests = "*"
selenium = "*"
simple-term-menu = "*"
six = "*"
SQLAlchemy = "*"
starlette = "*"
termcolor = "*"
uvicorn = "*"
validators = "*"
virtualenv = "*"
wget = "*"
zipp = "*"
aiohttp = "^3.8"
aiosignal = "^1.3"
alembic = "^1.9"
bcrypt = "^4.0"
celery = "^5.2.6"
click = "^8.1"
cookiecutter = "^2.1"
decorator = "^5.1"
Django = "^4.1"
factory-boy = "^3.2"
Faker = "^16.0"
fastapi = "^0.89"
gunicorn = "^20.1.0"
httpx = "^0.23"
Jinja2 = "^3.1"
loguru = "^0.6"
MouseInfo = "0.1"
numpy = "^1.24"
orjson = "^3.8"
Pillow = "^9.4"
pre-commit = "^2.21"
prompt-toolkit = "^3.0"
psycopg2-binary = "^2.9"
PyAutoGUI = "^0.9"
pydantic = "^1.10"
Pygments = "^2.14"
PyQt6 = "^6.4"
python-decouple = "^3.7"
pytz = "^2022.7.1"
redis = {version = "^4.4.1", extras = ["asyncio"]}
requests = "^2.28"
selenium = "^4.7"
simple-term-menu = "^1.6"
six = "^1.16"
SQLAlchemy = "^1.4"
SQLAlchemy-Utils = "^0.38.2"
termcolor = "^2.2"
uvicorn = "^0.20"
validators = "^0.20"
virtualenv = "^20.17"
wget = "^3.2"
zipp = "^3.11"
[tool.poetry.dev-dependencies]
black = "*"
flake8 = "*"
ipython = "*"
mypy = "*"
pytest = "*"
pytest-cov = "*"
black = "^22.12"
coverage = "^7.0"
flake8 = "^6.0"
ipython = "^8.8"
mypy = "^0.991"
pytest = "^7.2"
pytest-cov = "^4.0"
safety = "^2.1"
[build-system]