-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (50 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
55 lines (50 loc) · 1.59 KB
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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rf-interference-calculator"
version = "2.1.0"
description = "RF harmonic and intermodulation interference analysis tool for co-located radio modules"
readme = "README.md"
license = "AGPL-3.0-only"
requires-python = ">=3.10"
authors = [
{ name = "Adam Engelbrecht" },
]
keywords = ["rf", "interference", "harmonic", "intermodulation", "5g-nr", "lte", "emi", "emc"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
dependencies = [
"streamlit>=1.28.0",
"pandas>=2.0.0",
"altair>=5.0.0",
"openpyxl>=3.1.0",
"pyperclip>=1.8.0",
"python-docx>=0.8.11",
"matplotlib>=3.5.0,<3.8.0",
"seaborn>=0.11.0",
"numpy>=1.21.0",
"reportlab>=4.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"black>=23.0.0",
"flake8>=6.0.0",
]
[project.urls]
Homepage = "https://github.com/aengel-techworx/rf-interference-calculator"
Repository = "https://github.com/aengel-techworx/rf-interference-calculator"
Issues = "https://github.com/aengel-techworx/rf-interference-calculator/issues"
[project.scripts]
rf-calc = "ui:main"