-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (52 loc) · 1.59 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 = "django-welkin"
version = "0.0.6"
description = "A Django app interfacing with the Welkin API."
license = "GPL-3.0-or-later"
authors = ["Sam Morgan <sam@lightmatter.com>", "Taylor Cochran <taylor@lightmatter.com>"]
readme = "README.md"
homepage = "https://pypi.org/project/django-welkin/"
repository = "https://github.com/lightmatter/django-welkin"
documentation = "https://django-welkin.readthedocs.io/"
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
packages = [{include = "django_welkin"}]
[tool.poetry.dependencies]
python = "^3.8"
welkin = "^0.0.8"
django-solo = "^2.0.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
Django = "^4.0.0"
black = "^22.8.0"
isort = "^5.10.1"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
django-environ = "^0.9.0"
model-bakery = "^1.8.0"
pytest = "^7.1.3"
pytest-django = "^4.5.2"
pytest-dotenv = "^0.5.2"
pytest-vcr = "^1.0.2"
pytest-cov = "^4.0.0"
vcrpy = "^4.2.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.settings"
addopts = ["--reuse-db"]
env_files = [".env", ".env.example"]