-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
64 lines (56 loc) · 1.45 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "setuptools_scm[toml]", "wheel"]
[project]
name = "e-qsl"
readme = "README.md"
description = "Send contacts confirmation cards (QSL Cards)."
license = {file = "LICENSE"}
dynamic = ["version"]
requires-python = ">=3.10"
authors = [
{ name = "Fred C. (W6BSD)" },
]
classifiers = [
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python",
"Topic :: Communications :: Ham Radio"
]
dependencies = [
"Pillow",
"PyYAML",
"adif_io",
"watchfiles",
"qrzlib",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools_scm]
write_to = "eqsl/_version.py"
[project.optional-dependencies]
dev = [
"pre-commit",
"ipdb",
"flake8",
"mypy",
"isort",
]
[project.urls]
Documentation = "https://github.com/0x9900/QSL/"
Source = "https://github.com/0x9900/QSL"
Tracker = "https://github.com/0x9900/QSL/issues"
[project.scripts]
eqsl = "eqsl:main"
sendcard = "eqsl.sendcard:main"
[tool.setuptools.packages.find]
include = ["eqsl*"]
[tool.setuptools.package-data]
eqsl = ["*/default.jpg", "*/*.ttf"]
#
#