-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (39 loc) · 986 Bytes
/
pyproject.toml
File metadata and controls
47 lines (39 loc) · 986 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
41
42
43
44
45
46
47
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aiocsv"
readme = "readme.md"
requires-python = ">=3.9"
dynamic = ["version"]
authors = [
{name = "Mikołaj Kuranowski", email = "mkuranowski+pypackages@gmail.com"},
]
keywords = ["async", "asynchronous", "csv", "tsv"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Framework :: AsyncIO",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"typing_extensions"
]
[project.urls]
Homepage = "https://github.com/MKuranowski/aiocsv"
[tool.setuptools]
packages = ["aiocsv"]
zip-safe = false
[tool.setuptools.package-data]
aiocsv = ["py.typed"]
[tool.setuptools.dynamic]
version = {attr = "aiocsv.__version__"}
[tool.black]
line-length = 99
target-version = ['py39']
[tool.isort]
profile = "black"
line_length = 99
py_version = 39
[tool.pyright]
typeCheckingMode = "strict"