-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
41 lines (37 loc) · 1.11 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
[tool.poetry]
name = "django-plausible-proxy"
version = "0.5.1"
homepage = "https://github.com/imankulov/django-plausible-proxy"
description = "Django module to proxy requests to Plausible Analytics."
authors = ["Roman Imankulov <[email protected]>"]
readme = "README.md"
license = "MIT"
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
packages = [
{ include = "plausible_proxy" },
{ include = "tests", format = "sdist" },
]
[tool.poetry.dependencies]
python = "^3.8"
Django = ">=3.2"
requests = "^2"
[tool.poetry.dev-dependencies]
pytest = "^7"
pytest-xdist = "^2.5.0"
coverage = "^6.2"
pytest-django = "^4.5.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
source = ["tests", "plausible_proxy"]