-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
64 lines (58 loc) · 1.71 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "karbon"
version = "0.2.0"
description = "Turn mouse events into art!"
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE.txt"}
keywords = ["mouse tracking", "mouse", "tracking", "karbon"]
authors = [{ name = "Furkan Onder", email = "[email protected]" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Games/Entertainment",
"Topic :: Multimedia :: Graphics :: Capture :: Screen Capture",
"Topic :: Artistic Software",
]
dependencies = [
"pygame-ce==2.5.1",
"pygame-gui==0.6.12",
"pynput==1.7.6",
]
[project.urls]
"Homepage" = "https://github.com/furkanonder/karbon"
"Bug Reports" = "https://github.com/furkanonder/karbon/issues"
"Source" = "https://github.com/furkanonder/karbon"
[project.scripts]
karbon = "karbon.__main__:main"
[tool.docformatter]
recursive = true
wrap-summaries = 79
wrap-descriptions = 79
blank = true
[tool.mypy]
warn_unused_configs = true
no_strict_optional = true
ignore_missing_imports = true
show_error_codes = true
[tool.ruff]
line-length = 119
lint.select = [
"E", # pycodestyle
"F", # pyflakes
"UP", # pyupgrade,
"I", # isort
]
lint.mccabe = { max-complexity = 14 }