-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (41 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
49 lines (41 loc) · 1.2 KB
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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "numt"
version = "0.1.1"
description = "A light-weight utility library for formatting numbers, currencies, dates, units, and more."
readme = "README.md"
license = "MIT"
authors = ["ajithvcoder <ajithvcoder@gmail.com>"]
keywords = ["formatting", "numbers", "units", "humanize", "utilities"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
homepage = "https://pypi.org/project/numt/"
repository = "https://github.com/ajithvcoder/numt" # Optional but recommended
documentation = "https://github.com/ajithvcoder/numt" # Optional
[tool.poetry.dependencies]
python = ">=3.11, <4.0"
Babel = ">=2.9"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.7.0"
black = "^24.10.0"
ruff = "^0.8.0"
isort = "^5.0"
mypy = "^1.0"
pytest = "^7.0"
pytest-cov = "^4.0"
# for formatting and linting
[tool.black]
line-length = 88
target-version = ["py311"]
[tool.ruff]
lint.extend-ignore = [
"E402", # Ignore module-level import issues
"E731",
"UP007", # Wants | over Union, which breaks 3.8
]
line-length = 88