-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
45 lines (37 loc) · 1.02 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
[tool.poetry]
name = "django-amplitude"
packages = [
{include = "amplitude"}
]
version = "0.8.1"
description = "Integration between Django and Amplitude"
authors = ["Matt Pye <pyematt@gmail.com>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/pyepye/django-amplitude"
homepage = "https://github.com/pyepye/django-amplitude"
keywords = ["amplitude", "analytics", "product analytics", "saas"]
[tool.poetry.dependencies]
python = "^3.6"
Django = ">=2.1"
httpx = ">=0.13.2"
user-agents = ">=2.1"
[tool.poetry.dev-dependencies]
django-stubs = "^1.5.0"
flake8 = "^4.0.1"
isort = {extras = ["pyproject"], version = "^5.2.0"}
pytest = "^7.0.1"
pytest-cov = "^4.0.0"
pytest-django = "^4.5.2"
pytest-freezegun = "^0.4.1"
pytest-mock = "^3.1.0"
tox = "^3.28.0"
[tool.isort]
line_length = 79
multi_line_output = 5
known_third_party = "pytest"
known_first_party = "amplitude"
skip_glob = "__pycache__/*,venv/*,.venv/*,.tox/*,.mypy_cache"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"