-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (37 loc) · 890 Bytes
/
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
[build-system]
requires = ['setuptools>=74.1.2', 'wheel']
build-backend = 'setuptools.build_meta'
[project]
name = 'django-gajo-utils'
version = '0.1.0'
description = 'Utilities for Django project.'
readme = 'README.md'
license = { text = 'MIT' }
authors = [{ name = 'jozekuhar', email = '[email protected]' }]
dependencies = [
"Django>=4.2",
]
requires-python = '>=3.9'
[project.optional-dependencies]
dev = [
'build>=1.2.2',
'twine>=5.1.1',
'pytest-cov>=5.0.0',
'pytest-django>=4.9.0',
'coverage>=7.6.1',
'ruff>=0.6.4',
'pre-commit>=v3.8.0',
]
[project.urls]
Source = 'https://github.com/jozekuhar/django-gajo-utils.git'
[tool.pytest.ini_options]
addopts = [
'--cov=src',
'--color=yes'
]
pythonpath = '.'
testpaths = 'tests'
DJANGO_SETTINGS_MODULE = 'tests_app.config.settings'
django_find_project = false
[tool.ruff]
line-length = 88