-
Notifications
You must be signed in to change notification settings - Fork 230
/
setup.cfg
56 lines (51 loc) · 1.36 KB
/
setup.cfg
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
[metadata]
name = sionna
version = attr: sionna.__version__
author = The Sionna contributors
author_email = [email protected]
description = Sionna -- A TensorFlow-based open-source library for simulating the physical layer of wireless communication systems
long_description = file: README.md
long_description_content_type = text/markdown
license = Apache 2.0
url = https://nvlabs.github.io/sionna/
download_url = https://github.com/NVlabs/sionna/releases
project_urls =
Bug Tracker = https://github.com/NVlabs/sionna/issues
classifiers =
Programming Language :: Python :: 3
Intended Audience :: Science/Research
Intended Audience :: Telecommunications Industry
Operating System :: OS Independent
License :: OSI Approved :: Apache Software License
[options]
package_dir == .
packages = find_namespace:
include_package_data = True
python_requires = >=3.8
install_requires =
tensorflow >=2.13.0, <2.16.0
numpy
matplotlib
scipy >=1.6.0
importlib_resources
mitsuba >= 3.2.0
pythreejs >= 2.4.2
ipywidgets >= 8.0.4
ipydatawidgets == 4.3.2
jupyterlab-widgets == 3.0.5
[options.package_data]
* = *.csv, *.npy, *.json, *.xml, *.ply
[options.packages.find]
where = .
exclude =
doc*
build*
dist*
projects*
test*
[options.exclude_package_data]
doc* = *
build* = *
dist* = *
projects* = *
test* = *