-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 809 Bytes
/
pyproject.toml
File metadata and controls
32 lines (27 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[tool.poetry]
name = "django-flipt"
version = "0.2.4"
description = "Flipt Integration for Django and Django REST Framework"
authors = ["Preeti Yuankrathok <preetisatit@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/earthpyy/django-flipt"
keywords = ["flipt", "django", "django-rest-framework", "feature-flag", "feature-toggle"]
packages = [
{ include = "flipt" }
]
[tool.poetry.dependencies]
python = "^3.6"
django = "^3.0.0"
djangorestframework = { version = "^3.12.2", optional = true }
flipt-grpc-python = "^0.2.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
icecream = "^2.1.0"
ipdb = "^0.13.4"
pylint = "^2.6.0"
[tool.poetry.extras]
rest = ["djangorestframework"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"