-
-
Notifications
You must be signed in to change notification settings - Fork 315
Expand file tree
/
Copy pathpyproject.toml
More file actions
104 lines (96 loc) · 2.69 KB
/
pyproject.toml
File metadata and controls
104 lines (96 loc) · 2.69 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[project]
name = "buku"
description = "Bookmark manager like a text-based mini-web."
keywords = ["cli", "bookmarks", "tag", "utility"]
readme = "README.md"
license = "GPL-3.0-or-later"
authors = [{ name = "Arun Prakash Jana", email = "engineerarun@gmail.com" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Utilities",
]
requires-python = ">=3.10"
dependencies = [
"beautifulsoup4>=4.4.1",
"certifi",
"cryptography>=1.2.3",
"html5lib>=1.0.1",
"urllib3>=1.23,<3",
"pyreadline3; sys_platform == 'win32'",
"colorama>=0.4.6; sys_platform == 'win32'",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/jarun/buku"
Documentation = "https://buku.readthedocs.io/en/latest"
Funding = "https://github.com/sponsors/jarun"
Source = "https://github.com/jarun/buku"
Tracker = "https://github.com/jarun/buku/issues"
[project.optional-dependencies]
server = [
"arrow>=1.2.2",
"Flask-Admin>=2.0.0",
"flask-paginate>=2022.1.8",
"Flask-WTF>=1.0.1",
"Flask>=2.2.2",
"Jinja2>=3",
"flasgger",
]
locales = ["Flask-Admin[translation]"]
[dependency-groups]
dev = [
{ include-group = "tests" },
{ include-group = "docs" },
{ include-group = "packaging" },
]
tests = [
"attrs>=17.4.0",
"beautifulsoup4>=4.6.0",
"Click>=7.0",
"flake8>=3.4.1",
"hypothesis>=6.0.0",
"mypy-extensions==0.4.1",
"py>=1.5.0",
"pylint>=1.7.2",
"pytest-cov",
"pytest-recording>=0.12.1",
"pytest-timeout",
"pytest>=6.2.1",
"PyYAML>=4.2b1",
"tomli; python_version < '3.11'",
"vcrpy>=1.13.0",
"lxml",
"buku[server,locales]",
]
docs = [
"myst-parser>=0.17.0",
"sphinx-autobuild>=2021.3.14",
"sphinx-rtd-theme>=1.0.0",
]
packaging = ["twine>=1.11.0"]
[project.scripts]
buku = "buku:main"
bukuserver = "bukuserver.server:cli"
[tool.setuptools]
py-modules = ["buku"]
packages.find.include = ["bukuserver", "bukuserver.*"]
[tool.setuptools.data-files]
"share/man/man1" = ["*.1"]
[tool.setuptools.dynamic]
version = { attr = "buku.__version__" }
[build-system]
requires = ["setuptools>=77.0.3"]
build-backend = "setuptools.build_meta"