-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
58 lines (52 loc) · 1.65 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
[project]
name = "iterfzf"
description = "Pythonic interface to fzf"
readme = "README.rst"
keywords = ["fzf"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console :: Curses",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: BSD :: FreeBSD",
"Operating System :: POSIX :: BSD :: OpenBSD",
"Operating System :: POSIX :: Linux",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Terminals",
]
authors = [
{ name = "Hong Minhee (洪 民憙)", email = "hong@minhee.org" },
]
license = { file = "LICENSE" }
requires-python = ">= 3.8"
dynamic = ["version"]
[project.urls]
"Source Code" = "https://github.com/dahlia/iterfzf"
"Issue Tracker" = "https://github.com/dahlia/iterfzf/issues"
Downloads = "https://github.com/dahlia/iterfzf/releases"
[build]
sdist = true
[build-system]
requires = ["flit_core >= 3.2, < 4", "packaging >= 22"]
backend-path = ["."]
build-backend = "build_dist"
[tool.flit.sdist]
include = ["build_dist.py", "iterfzf/fzf-*-release.json"]
exclude = ["iterfzf/fzf", "itefzf/fzf.exe"]
[tool.yapfignore]
ignore_patterns = [
".tox"
]
[tool.yapf]
based_on_style = "pep8"
column_limit = 79
dedent_closing_brackets = true
indent_dictionary_value = true