This commit is contained in:
Eden Kirin
2023-03-28 15:08:58 +02:00
commit 15fef5c232
6 changed files with 471 additions and 0 deletions

20
pyproject.toml Normal file
View File

@ -0,0 +1,20 @@
[tool.poetry]
name = "importer-server-simulator"
version = "0.1.0"
description = ""
authors = ["Eden Kirin <eden.kirin@intis.hr>"]
readme = "README.md"
packages = [{include = "importer_server_simulator"}]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.95.0"
pydantic = "^1.10.7"
uvicorn = "^0.21.1"
requests = "^2.28.2"
colorama = "^0.4.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"