-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (46 loc) · 1.26 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "dxcluster"
readme = "README.md"
description = "Gather spot data from DXCC cluster network."
license = {file = "LICENSE.md"}
authors = [
{ name = "Fred C." },
]
classifiers = [
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Telecommunications",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.10"
dependencies = [
"DXEntity",
"PyYAML",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"pylint",
"isort",
"flake8",
"pre-commit",
"ipdb"
]
[project.urls]
Documentation = "https://github.com/0x9900/dxcluster/"
Source = "https://github.com/0x9900/dxcluster"
Tracker = "https://github.com/0x9900/dxcluster/issues"
[project.scripts]
dxcluster = "dxcluster:main"
purge_cluster = "dxcluster.purge_cluster:main"
[tool.setuptools.dynamic]
version = { attr = "dxcluster._dxcluster.__version__" }
[tool.setuptools.packages.find]
include = ["dxcluster*"]