-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (51 loc) · 1.1 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
[build-system]
requires = ["hatchling", "hatch-regex-commit"]
build-backend = "hatchling.build"
[project]
name = "GitLabStudentsMonitoring"
requires-python = ">=3.12"
description = "A database to keep track of students' progress on GitLab."
readme = "README.md"
authors = [
{ name = "Massimo Santini", email = "[email protected]" },
]
dependencies = [
"Flask-Admin>=1.6.1",
"Flask-SQLAlchemy>=3.1.1",
"humanize>=4.8.0",
"python-gitlab>=3.15.0",
"tqdm>=4.66.1"
]
dynamic = ["version"]
[project.urls]
Changelog = "https://github.com/mapio/gitlab-monitor/blob/master/CHANGELOG.txt"
Homepage = "https://github.com/mapio/gitlab-monitor"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
source = "regex_commit"
path = "gsm/__init__.py"
[tool.hatch.build]
include = [
"gsm/**"
]
[tool.hatch.envs.devel]
detached = true
dependencies = [
"gitchangelog",
"pystache",
"flake8",
"black",
"isort",
]
[tool.hatch.envs.devel.scripts]
check = [
"flake8 ./gsm",
"black --check --diff ./gsm",
"isort --check-only --diff ./gsm",
]
fmt = [
"isort ./gsm",
"black ./gsm",
"check",
]