-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (48 loc) · 1.45 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
[tool.poetry]
name = "thebook"
version = "0.1.0"
description = "The Book - Hackerspace Management System"
authors = ["Renne Rocha <[email protected]>"]
license = "AGPL-3.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
django = "^5.1.1"
python-decouple = "^3.8"
dj-database-url = "^2.2.0"
gunicorn = "^23.0.0"
psycopg = {extras = ["binary"], version = "^3.2.3"}
django-storages = {extras = ["s3"], version = "^1.14.4"}
ofxtools = "^0.9.5"
ofxparse = {git = "https://github.com/rennerocha/ofxparse.git", rev = "master"}
django-taggit = "^6.1.0"
setuptools = "^75.6.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-django = "^4.9.0"
taskipy = "^1.13.0"
pre-commit = "^3.8.0"
ipdb = "^0.13.13"
ipython = "^8.27.0"
pytest-cov = "^5.0.0"
model-bakery = "^1.19.5"
pytest-freezegun = "^0.4.2"
pytest-mock = "^3.14.0"
djade = "^1.3.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.taskipy.tasks]
collectstatic = "python manage.py collectstatic"
makemigrations = "python manage.py makemigrations"
migrate = "python manage.py migrate"
run = "python manage.py runserver"
test = "pytest -s --cov=thebook"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "thebook.settings"
[tool.isort]
known_django = ["django"]
known_first_party = ["thebook"]
known_third_party = ["django", "model_bakery", "pytest"]
profile = "black"
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "DJANGO", "FIRSTPARTY", "LOCALFOLDER"]