Update versions.

This commit is contained in:
retoor 2025-11-09 20:03:00 +01:00
parent 4befae4d2f
commit 0780484e24
2 changed files with 22 additions and 6 deletions

View File

@ -8,7 +8,22 @@ pytest==8.3.0
pytest-asyncio==0.23.0 pytest-asyncio==0.23.0
docker==7.0.0 docker==7.0.0
aiofiles==23.2.1 aiofiles==23.2.1
Pillow==10.2.0
pytest-cov==4.1.0 pytest-cov==4.1.0
rich==13.7.0 rich==13.7.0
tqdm==4.66.1 tqdm==4.66.1
aiohttp_jinja2
pydantic[dotenv]
python-dotenv
pydantic[email]
aiohttp_cors
aiohttp_session
aiohttp_csrf
aiohttp_security
aiohttp_swagger
aiohttp_debugtoolbar
cryptography
aiojobs
aiofiles
aiohttp_pydantic
bcrypt
aiosmtplib

View File

@ -1,17 +1,18 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages
with open('requirements.txt') as f:
install_requires = f.read().splitlines()
setup( setup(
name="retoors", name="retoors",
version="0.1.0", version="0.1.0",
packages=find_packages(), packages=find_packages(),
include_package_data=True, include_package_data=True,
install_requires=[ install_requires=install_requires,
"aiohttp",
"jinja2",
],
entry_points={ entry_points={
"console_scripts": [ "console_scripts": [
"retoors=retoors.main:main", "retoors=retoors.main:main",
], ],
}, },
) )