2022-08-19 10:35:05 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "frogress"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "Progress API for decompilation projects"
|
|
|
|
authors = ["Ethan Roseman <ethteck@gmail.com>"]
|
|
|
|
license = "MIT"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.8"
|
|
|
|
Django = "^4.1"
|
|
|
|
djangorestframework = "^3.13.1"
|
2022-08-24 01:35:16 +00:00
|
|
|
django-nested-admin = "^3.4.0"
|
2022-08-28 12:38:14 +00:00
|
|
|
django-environ = "^0.9.0"
|
2022-08-19 10:35:05 +00:00
|
|
|
|
2022-11-22 06:52:50 +00:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
2022-08-19 10:35:05 +00:00
|
|
|
black = "^22.6.0"
|
|
|
|
mypy = "^0.971"
|
|
|
|
django-stubs = "^1.12.0"
|
|
|
|
djangorestframework-stubs = "^1.7.0"
|
|
|
|
django-stubs-ext = "^0.5.0"
|
2022-11-22 06:52:50 +00:00
|
|
|
gunicorn = "^20.1.0"
|
2022-08-19 10:35:05 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|