-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (35 loc) · 1.04 KB
/
pyproject.toml
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
33
34
35
36
37
38
[tool.poetry]
name = "spook"
version = "3.2.8"
description = "Django Rest Framework library to interconnect external APIs"
authors = ["Pablo Moreno <pablomoreno.inf@gmail.com>"]
license = "MIT"
readme = "README.md"
exclude = ["spook/tests/**"]
keywords = ["http", "api", "microservices"]
homepage = "https://github.com/pablo-moreno/spook"
classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 5 - Production/Stable",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.2",
]
[tool.poetry.dependencies]
python = ">=3.7,<4"
django = ">= 2.2.0"
djangorestframework = ">= 3.3.1"
requests = ">= 2.24.0"
coverage = ">= 5.3"
djangorestframework-jwt = ">= 1.11.0"
[tool.poetry.dev-dependencies]
wheel = "^0.34.2"
pytest = "^6.0.1"
coverage = "^5.3"
pytest-cov = "^2.12.0"
flake8 = "^3.9.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"