-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
65 lines (55 loc) · 2.01 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
59
60
61
62
63
64
65
[project]
name = "sticker-convert"
description = "Convert (animated) stickers to/from WhatsApp, Telegram, Signal, Line, Kakao, Viber, Discord, iMessage. Written in Python."
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
keywords = ["telegram", "line", "tgs", "whatsapp", "kakao", "signal", "imessage", "wastickers", "viber", "discord"]
authors = [
{name = "laggykiller", email = "[email protected]" } # Optional
]
maintainers = [
{name = "laggykiller", email = "[email protected]" } # Optional
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
dynamic = ["version", "dependencies"]
[options]
include_package_data = true
[project.urls] # Optional
Homepage = "https://github.com/laggykiller/sticker-convert"
Source = "https://github.com/laggykiller/sticker-convert"
Documentation = "https://github.com/laggykiller/sticker-convert"
Tracker = "https://github.com/laggykiller/sticker-convert/issues"
Repository = "https://github.com/laggykiller/sticker-convert"
[project.scripts]
sticker-convert = "sticker_convert.__main__:main"
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = {attr = "sticker_convert.__version__"}
dependencies = {file = ["requirements.txt"]}
[tool.pyright]
include = ["src", "scripts", "tests", "compile.py"]
strict = ["*"]
[tool.mypy]
python_version = "3.9"
files = ["src", "scripts", "tests", "compile.py"]
[tool.isort]
line_length = 200
extend_skip = ["msicreator"]
[tool.ruff]
exclude = ["msicreator"]