-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (33 loc) · 843 Bytes
/
pyproject.toml
File metadata and controls
40 lines (33 loc) · 843 Bytes
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
[build-system]
requires = ['poetry-core>=2,<3']
build-backend = 'poetry.core.masonry.api'
[tool.poetry]
name = 'pystatsd'
version = '2.0.1'
description = 'Python client for statsd'
authors = ['platform <platform@hh.ru>']
repository = 'https://forgejo.pyn.ru/hhru/pystatsd'
homepage = 'https://forgejo.pyn.ru/hhru/pystatsd'
readme = 'README.md'
[[tool.poetry.source]]
name = 'pypi-mirror'
url = 'https://devpi.pyn.ru/root/pypi/+simple/'
priority = 'supplemental'
[[tool.poetry.source]]
name = 'hhdev'
url = 'https://devpi.pyn.ru/hh/hhdev/+simple/'
priority = 'primary'
[tool.poetry.dependencies]
python = '>=3.9,<4'
[tool.poetry.group.test.dependencies]
pytest = '8.3.3'
pystolint = '0.2.17'
[tool.pytest.ini_options]
addopts = '''
--tb native
-p no:warnings
'''
[tool.ruff.lint.per-file-ignores]
'tests/**/*.py' = [
'BLE001',
]