Update versions.
This commit is contained in:
parent
4befae4d2f
commit
0780484e24
@ -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
|
||||||
|
|||||||
9
setup.py
9
setup.py
@ -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",
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user