-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (42 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
50 lines (42 loc) · 1.01 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "SnapStudySensei"
version = "0.0.1"
authors = [
{ name="Clément Bœsch", email="u@pkh.me" },
]
description = "Capture, extract, translate and record Japanese flashcards into Anki"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: Japanese",
]
dependencies = [
'PySide6',
'pillow',
'xdg-base-dirs',
'manga-ocr',
'xcffib',
'gtts',
]
[project.urls]
"Homepage" = "https://github.com/ubitux/SnapStudySensei"
"Bug Tracker" = "https://github.com/ubitux/SnapStudySensei/issues"
[project.gui-scripts]
sss = "snapstudysensei:run"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120
[tool.pyright]
venv = "venv"
venvPath = "."
[tool.setuptools]
packages = ["snapstudysensei"]
[tool.setuptools.package-data]
snapstudysensei = ["data/*", "*.qml"]