-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 866 Bytes
/
pyproject.toml
File metadata and controls
43 lines (36 loc) · 866 Bytes
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
[project]
name = "nkf"
dynamic = ["version"]
description = "Python Interface to NKF"
authors = [
{name = "SATOH Fumiyasu", email = "fumiyas@osstech.co.jp"},
]
license = "BSD-3-Clause"
dependencies = []
requires-python = ">=3.10"
readme = "README.md"
[project.urls]
Homepage = "https://github.com/fumiyas/python-nkf"
Downloads = "https://pypi.org/project/nkf/"
[project.scripts]
pynkf = "nkf.__main__:main"
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=77",
"setuptools-scm[toml]>=8",
]
[dependency-groups]
dev = [
"pytest",
"tox-uv>=1.33",
]
[tool.setuptools_scm]
[[tool.uv.index]]
name = "pypi-nkf"
url = "https://pypi.org/simple"
publish-url = "https://upload.pypi.org/legacy/"
[[tool.uv.index]]
name = "test-pypi-nkf"
url = "https://test.pypi.org/simple"
publish-url = "https://test.pypi.org/legacy/"