-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (38 loc) · 946 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
41
42
43
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "bto"
version = "1.0.0"
dependencies = [
"psutil",
"requests",
"pillow",
"rich",
"numpy",
"pytesseract"
]
requires-python = ">=3.8"
authors = [
{name = "Divinemonk"}
]
maintainers = [
{name = "Divinemonk"}
]
description = "[BTO]: multi-purpose cli tool (one-script-to-rule-them-all)"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["bto", "tool", "handy", "divinemonk", "all-in-one"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License"
]
[tool.hatch.build.targets.wheel]
packages = ["src"]
[project.urls]
Homepage = "https://github.com/Divinemonk/bto"
"Bug Tracker" = "https://github.com/Divinemonk/bto/issues"
Changelog = "https://github.com/me/spam/blob/m41n/CHANGELOG.md"
[project.scripts]
bto = "bto:main"