-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
77 lines (64 loc) · 1.53 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
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
requires = ["setuptools>=42", "wheel", "msgpack", "requests"]
build-backend = "setuptools.build_meta"
[project]
name = "pkl-python"
dynamic = ["version"]
description = "Python library for Apple's PKL."
authors = [
{ name = "Jungwoo Yang", email = "[email protected]" },
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"msgpack >= 1.0.8",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.dynamic]
version = {file = "src/pkl/VERSION"}
[project.optional-dependencies]
dev = [
"pre-commit",
"black",
"isort",
"mypy",
"pylint",
"pytest",
"pytest-cov",
"tox",
]
[project.urls]
"Homepage" = "https://github.com/jw-y/pkl-python"
"Bug Reports" = "https://github.com/jw-y/pkl-python/issues"
"Source" = "https://github.com/jw-y/pkl-python"
[project.scripts]
pkl-gen-python = "pkl_gen_python:main"
[tool.twine]
repository = "pypi"
[tool.black]
line-length = 88
target-version = ['py310']
force-exclude = 'codegen/snippet-tests/output/'
[tool.isort]
profile = "black"
skip = ["codegen/snippet-tests/output/*"]
[tool.autoflake]
exclude = ["codegen/snippet-tests/output/*"]
[tool.pytest.ini_options]
addopts = "-ra -q"
[tool.cibuildwheel]
build = [
"*-macosx_x86_64",
"*-macosx_arm64",
"*-manylinux_aarch64",
"*-manylinux_x86_64",
#"*-musllinux_x86_64",
"*-win_amd64",
]