-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (37 loc) · 1.25 KB
/
Copy pathpyproject.toml
File metadata and controls
39 lines (37 loc) · 1.25 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
[project]
name = "mineskin"
version = "0.1.0"
requires-python = ">=3.14"
dependencies = [
"numpy>=2.4.6",
"pillow>=12.2.0",
]
authors = [{ name = "Kiber2009", email = "92222946+kiber2009@users.noreply.github.com" }]
description = "Simple Python library for working with Minecraft skins"
readme = "README.md"
license = "MIT"
keywords = ["minecraft skin"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.15",
"Programming Language :: Python :: 3.16",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Games/Entertainment",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Editors",
"Topic :: Multimedia :: Graphics :: Editors :: Raster-Based",
"Natural Language :: English"
]
[project.urls]
Homepage = "https://github.com/Kiber2009/mineskin"
#Documentation = "https://readthedocs.org"
Repository = "https://github.com/Kiber2009/mineskin.git"
Issues = "https://github.com/Kiber2009/mineskin/issues"
#Changelog = "https://github.com/Kiber2009/mineskin/blob/master/CHANGELOG.md"
[dependency-groups]
dev = [
"ruff>=0.15.14",
]