-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (34 loc) · 999 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = [
"term_mark",
"term_mark.InquirerPy.InquirerPy",
"term_mark.InquirerPy.InquirerPy.base",
"term_mark.InquirerPy.InquirerPy.containers",
"term_mark.InquirerPy.InquirerPy.prompts",
]
[tool.setuptools.package-data]
term_mark = ["tm.zsh"]
[project]
name = "term-mark"
version = "0.1.5"
authors = [{ name = "Andrew Stone" }]
description = "Bookmarks for your terminal"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: System :: Shells",
"Topic :: Terminals",
"Topic :: Utilities",
]
dependencies = ['pfzy >= 0.3.4', 'prompt-toolkit >= 3.0.39']
[project.scripts]
term-mark = "term_mark.main:main"
[project.urls]
"Homepage" = "https://github.com/exastone/term-mark"