-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (41 loc) · 1.23 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
# pyproject.toml
[build-system]
requires = ["setuptools>=45.2.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "py-channelmodel"
version = "0.9.3"
description = "A wireless communication channel model module for simulations."
readme = "README.md"
authors = [{ name = "Johannes Demel", email = "[email protected]" }]
license = { text = "GPL-3.0-or-later" }
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Intended Audience :: Telecommunications Industry",
]
keywords = [
"wireless",
"simulation",
"communication",
"channel",
"Rayleigh",
"AWGN",
]
dependencies = ["numpy >= 1.17.0", "scipy >= 1.3.0"]
requires-python = ">=3.7"
[project.optional-dependencies]
dev = ["black", "pytest", "bumpver", "build", "twine"]
gui = ["matplotlib >= 3.1.0"]
[project.urls]
Homepage = "https://github.com/jdemel/py-channelmodel"
[project.scripts]
channelmodel = "channelmodel.__main__:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]