-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
58 lines (51 loc) · 1.41 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
[build-system]
requires = ["poetry>=1.7"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "clisnips"
version = "0.6.0"
description = "A command-line snippets manager."
authors = ["ju1ius <[email protected]>"]
license = "GPL-3.0+"
readme = "README.md"
repository = "https://github.com/ju1ius/clisnips"
keywords = ["snippet", "snippets", "cli", "tui"]
classifiers = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Environment :: Console',
'Environment :: Console :: Curses',
'Operating System :: Unix',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Terminals',
'Topic :: Terminals :: Terminal Emulators/X Terminals',
'Topic :: System :: System Shells',
'Topic :: Utilities',
]
[tool.poetry.scripts]
clisnips = 'clisnips.__main__:main'
[tool.poetry.dependencies]
python = "^3.11"
urwid = "^2.2.3"
pygments = "^2.16.1"
observ = "^0.14"
pydantic = "^2.4.2"
tomlkit = "^0.12.3"
typing-extensions = "^4.8.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
pyfakefs = "^5.3.0"
ruff = "^0.1.6"
[tool.ruff]
target-version = "py311"
line-length = 120
[tool.ruff.format]
quote-style = "single"
[tool.ruff.lint]
extend-select = [
'UP', # pyupgrade
]