-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
78 lines (71 loc) · 1.55 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
[project]
authors = [
{name = "Mozilla", email = "[email protected]"},
]
classifiers = [
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
description = "Unified Lando Project"
dependencies = [
"celery",
"cryptography",
"datadog",
"django ~= 5.0",
"django-libsass",
"django-storages[google]",
"django_compressor",
"jinja2",
"kombu",
"mercurial==6.1.4",
"mots",
"mozilla_django_oidc",
"networkx",
"psycopg2-binary",
"python-hglib==2.6.2",
"python-jose",
"redis",
"rs-parsepatch",
"sentry-sdk",
"setuptools-scm",
"simple-github",
"uwsgi",
]
name = "lando"
requires-python = ">=3.10"
dynamic = ["version"]
[project.optional-dependencies]
code-quality = ["black", "ruff"]
testing = [
"pytest",
"pytest-cov",
"pytest-django",
"requests-mock"
]
[project.scripts]
lando = "lando.manage:main"
[build-system]
requires = [
"setuptools>=64",
"setuptools_scm>=8",
"pip-tools",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_file = "src/lando/version.py"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "lando.test_settings"
addopts = "--cov --cov-report html"
testpaths = [
"src/lando/api",
"src/lando/dockerflow",
"src/lando/main/tests",
"src/lando/tests",
"src/lando/ui/tests",
]