-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (62 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
72 lines (62 loc) · 1.78 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[build-system]
requires = ["setuptools>=82.0.1"]
build-backend = "setuptools.build_meta"
[project]
name = "pyfwf"
version = "1.0.1"
description = "Python library to manipulate fixed width file (FWF)"
readme = "README.md"
license = { file = "LICENSE.md" }
authors = [{ name = "Kelson da Costa Medeiros", email = "kelsoncm@gmail.com" }]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.optional-dependencies]
dev = [
"pre-commit>=4.6.0",
"black>=26.3.1",
"ruff>=0.15.11",
"doc8>=2.0.0",
"pytest>=9.0.3",
"pytest-cov>=7.1.0",
"python-dotenv>=1.2.2",
"pytest-coverage-gate>=1.0.3",
"responses>=0.26.0",
]
[project.urls]
Homepage = "https://github.com/kelsoncm/python-pyfwf"
"Bug Tracker" = "https://github.com/kelsoncm/python-pyfwf/issues"
Download = "https://github.com/kelsoncm/python-pyfwf/releases/"
Docs = "https://kelsoncm.github.io/python-pyfwf/"
[tool.setuptools.packages.find]
where = ["."]
include = ["pyfwf"]
[tool.coverage.run]
source = ["pyfwf"]
omit = ["tests/*", "sandbox/*"]
[tool.coverage.report]
fail_under = 100
show_missing = true
[tool.ruff]
line-length = 120
exclude = ["*.fwf", "tests/assets/example01.rst"]
force-exclude = true
[tool.ruff.lint]
select = ["E", "F", "W", "I", "S"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["S101"]
[tool.black]
line-length = 120
exclude = '''
(\\.fwf$)
'''