-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (32 loc) · 885 Bytes
/
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
[build-system]
requires = [
"setuptools>=42",
"setuptools_scm>=8",
]
build-backend = "setuptools.build_meta"
[project]
name = "dtx_to_wif"
dynamic = ["version"]
description = "Convert handweaving files from dtx format (FiberWorks) to wif"
readme = "ReadMe.md"
authors = [
{ name="Russell Owen", email="[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.7"
[project.scripts]
dtx_to_wif = "dtx_to_wif:run_dtx_to_wif"
[project.urls]
Homepage = "https://github.com/r-owen/dtx_to_wif_converter"
Issues = "https://github.com/r-owen/dtx_to_wif_converter/issues"
[tool.setuptools_scm]
write_to = "src/dtx_to_wif/version.py"
write_to_template = """
# Generated by setuptools_scm
__all__ = ["__version__"]
__version__ = "{version}"
"""