-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
60 lines (52 loc) · 1.8 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "anime-cursors"
version = "1.0.0"
description = "Animeted Cursors on Linux "
readme = "README.md"
requires-python = ">=3.7"
license = { file = "LICENSE.md" }
keywords = ["cur", "ani", "x11", "windows", "win32", "cursor", "xcursor"]
authors = [{ name = "ashuramaruzxc", email = "[email protected]" }]
maintainers = [{ name = "ashuramaruzxc", email = "[email protected]" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Desktop Environment",
]
dependencies = ["cursorgen", "pillow"]
[project.urls]
"Homepage" = "https://github.com/ashuramaruzxc/anime-cursors"
"Bug Reports" = "https://github.com/ashuramaruzxc/anime-cursors/issues"
"Source" = "https://github.com/ashuramaruzxc/anime-cursors"
[project.scripts]
CursorConverter = "CursorConverter.__main__:main"
[tool.hatch.build.targets.wheel]
packages = ["CursorConverter"]
[tool.flake8]
max-line-length = 120
application-import-names = "anime-cursors"
import-order-style = "pycharm"
extend-ignore = "E203"
[tool.mypy]
ignore_missing_imports = true
strict = true
plugins = ["numpy.typing.mypy_plugin"]
[tool.black]
line-length = 120
target-version = ["py38", "py39", "py310", "py311"]
[tool.isort]
profile = "black"