-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
74 lines (63 loc) · 1.55 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
68
69
70
71
72
73
74
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=61.2"
]
[project]
authors = [
{email = "[email protected]", name = "Ben Mather"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance"
]
dependencies = [
"pathspec >=0.9.0"
]
description = "The python statement sorter"
dynamic = [
"version"
]
maintainers = [
{email = "[email protected]", name = "Ben Mather"}
]
name = "ssort"
readme = "README.rst"
requires-python = ">=3.8"
[project.license]
text = "MIT"
[project.scripts]
ssort = "ssort._main:main"
[project.urls]
Homepage = "https://github.com/bwhmather/ssort"
[tool.black]
force-exclude = 'test_data/samples/*'
line_length = 79
[tool.isort]
extend_skip = ["test_data/samples"]
line_length = 79
multi_line_output = 3
profile = "black"
[tool.mypy]
exclude = "test_data/samples/*"
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = "pathspec"
[tool.setuptools]
include-package-data = false
license-files = [
"LICENSE"
]
[tool.setuptools.dynamic.version]
attr = "ssort.__version__"
[tool.setuptools.packages.find]
where = ["src"]