-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (45 loc) · 1.28 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tmu-jamming"
dynamic = ["version"]
dependencies = [
"scikit-image==0.22.0",
"scikit-learn==1.4.1.post1",
"matplotlib==3.8.3",
"tqdm==4.66.2",
"opencv-python-headless==4.9.0.80",
"pycuda",
"tmu @ git+https://github.com/cair/tmu.git@dev",
"tmu[composite] @ git+https://github.com/cair/tmu.git@dev"
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
scheme = "regex"
path = "tmu_jamming/__version__.py"
pattern = '__version__ = "(?P<version>[^"]+)"'
requires-python = ">=3.8"
authors = [
{name = "Per-Arne Andersen", email = "[email protected]"},
]
maintainers = [
{name = "Per-Arne Andersen", email = "[email protected]"}
]
description = "Using TMU to predict jamming in wireless networks."
readme = "README.md"
license = {file = "LICENSE.txt"}
keywords = []
classifiers = [
"Programming Language :: Python"
]
[project.optional-dependencies]
[project.urls]
Homepage = "https://example.com"
Documentation = "https://readthedocs.org"
Repository = "https://github.com/me/spam.git"
"Bug Tracker" = "https://github.com/me/spam/issues"
Changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"
[tool.hatch.build.targets.wheel]
packages = ["tmu_jamming"]