-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
79 lines (72 loc) · 1.78 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
73
74
75
76
77
78
79
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "django-easy-tenants"
description = "Easy to create applications that use tenants in django"
version = "0.9.2"
authors = [
{ name = "Cleiton Lima", email = "<cleiton.limapin@gmail.com>"},
]
license = "MIT"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"django-appconf==1.0.4",
"django>=3.2"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"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",
]
[tool.poetry]
requires-poetry = ">=2.0"
packages = [
{ include = "easy_tenants" }
]
[project.urls]
Repository = "https://github.com/CleitonDeLima/django-easy-tenants"
Homepage = "https://github.com/CleitonDeLima/django-easy-tenants"
[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"]