-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
64 lines (55 loc) · 1.42 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
# =-
# (C)opyright Net-ng 2008-2024
#
# This is Net-ng proprietary source code
# Any reproduction modification or use without prior written
# approval from Net-ng is strictly forbidden.
# =-
[build-system]
requires = ['setuptools', 'wheel', 'setuptools_scm']
build-backend = 'setuptools.build_meta'
[tool.setuptools_scm]
[project]
name = 'nagare-services'
dynamic = ['version']
description = 'Dependencies and services injection'
authors = [
{name = 'Net-ng'},
{email = '[email protected]'}
]
license = {file = 'LICENSE.txt'}
requires-python = '>=3.7'
dependencies = [
'nagare-config'
]
[project.readme]
file = 'README.rst'
content-type = 'text/x-rst'
[project.optional-dependencies]
dev = [
'sphinx',
'sphinx_rtd_theme',
'pre-commit',
'ruff',
'pytest',
'twine'
]
[project.urls]
Homepage = 'https://nagare.org'
Documentation = 'https://nagare.org/doc'
Source = 'https://github.com/nagareproject/services'
Tracker = 'https://github.com/nagareproject/services/issues'
[tool.ruff]
src = ['src']
line-length = 120
format.quote-style = 'single'
[tool.ruff.lint]
select = ['C4', 'COM', 'D', 'E', 'ERA', 'F', 'I', 'ISC', 'INP', 'PIE', 'Q', 'S', 'SIM', 'TID', 'W', 'YTT']
ignore = ['COM812', 'D10', 'ISC001']
isort.length-sort = true
pydocstyle.convention = 'google'
flake8-quotes.inline-quotes = 'single'
[tool.ruff.lint.per-file-ignores]
'*_test.py' = ['S101', 'S108']
[tool.pytest.ini_options]
testpaths = ['tests']