-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (50 loc) · 1.6 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyjama"
authors = [
{name = "Fabian Ulbricht", email = "fabianulbricht@web.de"},
{name = "Gian Marti", email = "marti@iis.ee.ethz.ch"},
{name = "Reinhard Wiesmayr", email = "wiesmayr@iis.ee.ethz.ch"}
]
description = "PyJama -- An open-source library based on Sionna nad TensorFlow for simulating jamming and anti-jamming techniques in wireless communication systems."
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Intended Audience :: Telecommunications Industry",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License"
]
keywords = ["jamming", "anti-jamming", "wireless", "sionna", "tensorflow", "machine learning"]
# TODO check dependencies
dependencies = [
"numpy",
"matplotlib",
"tensorflow",
"sionna"
]
dynamic = ["version"]
[project.optional-dependencies]
docs = [
"numpydoc==1.1.0",
"sphinx==4.0.2",
"sphinxcontrib-napoleon==0.7",
"sphinx_rtd_theme==1.0.0",
"nbsphinx==0.8.7",
"docutils==0.16",
"sphinx-copybutton==0.5.1",
"markupsafe==2.1.5"
]
[tool.setuptools.packages.find]
# where = ["."]
include = ["pyjama"]
exclude = ["tests", "simulations", "docs"]
[project.urls]
Homepage = "http://pyjama.ethz.ch"
Documentation = "https://huoxiaoyao.github.io/pyjama/"
Repository = "https://github.com/huoxiaoyao/pyjama"
Issues = "https://github.com/huoxiaoyao/pyjama/issues"