-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
67 lines (60 loc) · 1.54 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = ["setuptools>65", "setuptools_scm[toml]>=7"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 79
target_version = ['py312']
[tool.isort]
profile = "black"
multi_line_output = 3
order_by_type = false
line_length = 79
[tool.setuptools]
zip-safe = false
[tool.setuptools.dynamic]
version = {attr = "fastcli.__version__"}
readme = {file = ["README.md", "CHANGELOG.md"], content-type = "text/markdown"}
[tool.mypy]
check_untyped_defs = true
disallow_untyped_calls = true
disallow_untyped_defs = true
follow_imports = "silent"
ignore_missing_imports = true
python_version = "3.12"
show_column_numbers = true
warn_incomplete_stub = false
warn_redundant_casts = true
warn_unused_ignores = true
[project]
name = "fastcli"
urls = {homepage = "https://github.com/n8henrie/fastcli"}
dynamic = ["version", "readme"]
license = { text = "MIT" }
description = "Python3 CLI script for fast.com"
authors = [ {name = "Nathan Henrie", email = "[email protected]"} ]
keywords = ["fastcli"]
classifiers= [
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"aiohttp>=3.7.4,<4"
]
[project.optional-dependencies]
dev = [
"black",
"build",
"flake8",
"mypy",
"pytest",
"recommonmark",
"sphinx",
"sphinx-rtd-theme",
"tox",
"twine",
]