mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02:00
14 lines
263 B
Python
14 lines
263 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="support-app",
|
|
version="0.1",
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
"fastapi",
|
|
"sqlalchemy",
|
|
"pytest",
|
|
"pytest-asyncio",
|
|
"pytest-cov"
|
|
],
|
|
) |