-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
112 lines (97 loc) · 2.44 KB
/
pyproject.toml
File metadata and controls
112 lines (97 loc) · 2.44 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[tool.poetry]
name = "grimoirelab-core"
version = "1.0.0-alpha.1"
description = "Core of GrimoireLab"
authors = [
"GrimoireLab Developers"
]
license = "GPL-3.0+"
readme = "README.md"
homepage = "https://chaoss.github.io/grimoirelab/"
repository = "https://github.com/chaoss/grimoirelab-core"
keywords = [
"development",
"grimoirelab"
]
packages = [
{ include = "grimoirelab", from = "src" },
]
include = [
{ path = "grimoirelab/core/templates" },
{ path = "ui", format = "sdist" },
{ path = "AUTHORS", format = "sdist" },
{ path = "NEWS", format = "sdist" },
{ path = "README.md", format = "sdist" },
]
exclude = [
"ui/tests",
"ui/.storybook",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3"
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/chaoss/grimoirelab-core/issues"
[tool.poetry.scripts]
grimoirelab = "grimoirelab.core.runner.cmd:grimoirelab"
[tool.poetry.dependencies]
python = "^3.11"
django = "^5.2"
django-rq = "^3.1"
mysqlclient = "^2.0.3"
uWSGI = "^2.0"
django-cors-headers = "^4.6.0"
djangorestframework = "^3.15.2"
opensearch-py = "^3.0.0"
djangorestframework-simplejwt = "^5.4.0"
django-storages = {version = "^1.14.6", extras = ["google"]}
drf-spectacular = "^0.28.0"
django-structlog = "^9.0.1"
structlog = "^25.2.0"
grimoirelab-toolkit = {version = ">=1.2.0", allow-prereleases = true}
perceval = {version = ">=1.3.4", allow-prereleases = true}
sortinghat = {version = ">=1.11.0", allow-prereleases = true}
grimoirelab-chronicler = {version = ">=0.0.1rc2", allow-prereleases = true}
[tool.poetry.group.dev.dependencies]
fakeredis = "^2.29.0"
httpretty = "^1.1.4"
pytest-django = "^4.11.1"
testcontainers = "^4.10.0"
ruff = "^0.12.3"
pre-commit = "^4.2.0"
[tool.poetry-prehook]
pre-install = [
"python build/build-ui.py",
]
pre-build = [
"python build/build-ui.py",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 100
exclude = [
".eggs",
".git",
".git-rewrite",
".mypy_cache",
".pytest_cache",
".ruff_cache",
".vscode",
"__pypackages__",
"__pycache__",
"_build",
"build",
"dist",
"docs",
"docker",
"ui",
"node_modules",
"site-packages",
"src/**/migrations/*.py",
]