-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (52 loc) · 1.54 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[tool.poetry]
name = "optic-django-middleware"
version = "0.1.2"
description = "Django Middleware for optic"
authors = ["Mukesh <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/silentninja/optic-python"
repository = "https://github.com/silentninja/optic-python/frameworks/django/optic_django_middleware"
keywords = ["swagger", "optic", "sdk", "api", "django", "middleware"]
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 3.2',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Libraries :: Python Modules",
'Topic :: Internet :: WWW/HTTP',
'License :: OSI Approved :: MIT License'
]
include = [
"LICENSE",
]
packages = [
{ include = "optic_django_middleware" },
]
[[tool.poetry.source]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
secondary = true
[tool.poetry.dependencies]
python = "^3.7 || ^3.8 || ^3.9"
optic-sdk = "^0.1.0"
Django = "^3.2.4"
kubi-ecs-logger = "^0.1.0"
freezegun = { version = "^1.1.0", optional = true }
[tool.poetry.dev-dependencies]
optic-sdk = { path = "../../../sdk", develop = true }
tox = "^3.23.1"
codecov = "^2.1.11"
flake8 = "^3.9.2"
pre-commit = "^2.13.0"
[tool.poetry.extras]
test = ["freezegun"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
multi_line_output = 3