-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
71 lines (66 loc) · 1.75 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
[tool.poetry]
name = "django-easy-tenants"
version = "0.9.2"
description = "Easy to create applications that use tenants in django"
authors = ["Cleiton Lima <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/CleitonDeLima/django-easy-tenants"
homepage = "https://github.com/CleitonDeLima/django-easy-tenants"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
]
packages = [{ include = "easy_tenants" }]
[tool.poetry.dependencies]
python = ">=3.8"
django-appconf = "^1.0.4"
django = ">=3.2"
[tool.black]
line-length = 80
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| migrations
)/
'''
[tool.isort]
profile = "black"
line_length = 80
multi_line_output = 3
include_trailing_comma = true
skip = "migrations"
[tool.pytest.ini_options]
env = ["DJANGO_SETTINGS_MODULE=tests.settings"]
minversion = "6.0"
addopts = """\
--strict-config
--strict-markers
"""
testpaths = ["tests"]
python_files = ["tests.py", "test_*.py"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"