-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (42 loc) · 1.46 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
[project]
name = "python-pkl"
description = "Apple's PKL for python."
requires-python = ">=3.7"
license = "MIT"
authors = [{ name = "Vithor Jaeger", email = "[email protected]" }]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
]
keywords = ["pkl", "pickle", "apple"]
dynamic = ["readme", "version"]
[project.urls]
"Homepage" = "https://github.com/vaphes/python-pkl"
"Source" = "https://github.com/vaphes/python-pkl"
"Bug Tracker" = "https://github.com/vaphes/python-pkl/issues"
[tool.poetry]
name = "python-pkl"
version = "0.1.3"
description = "Python library to work with Apple's PKL files"
authors = ["Vithor Jaeger <[email protected]>"]
readme = "README.md"
packages = [{ include = "pkl" }]
[tool.poetry.urls]
"Homepage" = "https://github.com/vaphes/python-pkl"
"Source" = "https://github.com/vaphes/python-pkl"
"Bug Tracker" = "https://github.com/vaphes/python-pkl/issues"
[tool.poetry.dependencies]
python = "^3.12"
u-msgpack-python = "^2.8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"