-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
44 lines (37 loc) · 1.05 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
[tool.poetry]
name = "ens-normalize"
version = "3.0.9"
description = "Ethereum Name Service (ENS) Name Normalizer"
license = "MIT"
authors = ["Jakub Karbowski <[email protected]>"]
maintainers = ["NameHash Team <[email protected]>"]
homepage = "https://github.com/namehash/ens-normalize-python"
repository = "https://github.com/namehash/ens-normalize-python"
readme = "README.md"
packages = [{include = "ens_normalize"}]
[tool.poetry.dependencies]
python = "^3.8"
pyunormalize = "^16.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
pytest-cov = "^4.0.0"
pytest-mock = "^3.10.0"
ruff = "^0.6.5"
pre-commit = "^3.5.0"
coverage-badge = "^1.1.0"
[tool.ruff]
line-length = 120
target-version = "py39"
exclude = ["*.ipynb"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.ruff.lint.flake8-quotes]
docstring-quotes = "double"
inline-quotes = "single"
multiline-quotes = "double"
[tool.ruff.format]
# Prefer single quotes over double quotes.
quote-style = "single"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"