forked from MKuranowski/aiocsv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (33 loc) · 930 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "nscsv"
dynamic = ["version"]
description = "csv support for asyncio"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.9"
authors = [{ name = "Ajay Sonkar" }]
urls = { Repository = "https://github.com/skarFubatsu/nscsv" }
dependencies = ["aiofiles"]
[project.optional-dependencies]
tests = ["pytest>=7.4.4", "pytest-asyncio"]
[tool.setuptools]
py-modules = ["nscsv"]
[tool.setuptools.dynamic]
version = { attr = "nscsv.__version__" }
[tool.hatch.version]
path = "nscsv/__init__.py"
[tool.pytest.ini_options]
minversion = "7.4.4"
asyncio_mode = "auto"
testpaths = ["tests"]
console_output_style = "count"
[tool.pylint]
ignore = ["tests", "setup.py"]
max-line-length = 120
[tool.ruff]
extend-exclude = ["tests"]
line-length = 120
ignore-init-module-imports = true
show-fixes = true