This repository has been archived by the owner on Oct 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
72 lines (68 loc) · 1.95 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
60
61
62
63
64
65
66
67
68
69
70
71
72
[tool.poetry]
name = "django-google-optimize"
authors = ["Adin Hodovic <[email protected]>"]
license = "MIT"
version = "0.3.0"
readme = "README.md"
homepage = "https://github.com/adinhodovic/django-google-optimize"
repository = "https://github.com/adinhodovic/django-google-optimize"
documentation = "https://github.com/adinhodovic/django-google-optimize"
description = "Django-google-optimize is a reusable Django application designed to make running server side Google Optimize A/B test easy."
keywords = [
"A/B Testing",
"Google Optimize",
"Django",
"Server Side",
"KPI"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
[tool.poetry.dependencies]
django = ">=2.2"
python = "^3.7"
[tool.poetry.dev-dependencies]
tox = "^3.14.3"
wrapt = "^1.12.1"
coverage = "^5.0.2"
twine = "^3.1.1"
wheel = "^0.33.6"
pylint = "^2.6.0"
pylint-django = "^2.0.13"
factory-boy = "^2.12.0"
pytest = "^5.3.2"
pytest-cov = "^2.8.1"
pytest-django = "^3.7.0"
pytest-clarity = "^0.2.0-alpha.1"
black = "^20.8b1 "
mypy = "^0.800"
django-stubs = "^1.4.0"
pudb = "^2019.2"
ptpython = "^3.0.1"
ptipython = "^1.0.1"
isort = "^5.7.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.isort]
skip_glob = "**/migrations/*.py,**/fixtures/*.py,infra/**/*.py"
# https://github.com/psf/black/issues/251#issuecomment-535187912
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 88