-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
95 lines (86 loc) · 2.03 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[tool.poetry]
name = "ria"
version = "0.1.2"
description = "Radio Intelligence Apps' open-source core, by Qoherent 📡🚀"
readme = "README.md"
license = "AGPL-3.0-or-later"
keywords = [
"cognitive radio",
"intelligent radio",
"software defined radio",
"machine learning",
"artificial intelligence",
"deep learning"
]
authors = [
"Qoherent Inc. <[email protected]>"
]
maintainers = [
"Ashkan Beigi <[email protected]>",
"Michael Luciuk <[email protected]>",
"Alec Digby <[email protected]>"
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed"
]
packages = [
{ include = "ria" },
{ include = "ria_cli" }
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^1.26.3"
matplotlib = "^3.8.0"
torch = "^2.2.0"
click = "^8.1.7"
tqdm = "^4.66.2"
[tool.poetry.group.test.dependencies]
pytest = "^8.0.0"
pytest-cov = "^4.1.0"
coverage = "^7.4.4"
codecov = "^2.1.13"
[tool.poetry.group.docs.dependencies]
sphinx = "^7.2.6"
sphinx-rtd-theme = "^2.0.0"
sphinx-autobuild = "^2024.2.4"
[tool.poetry.group.dev.dependencies]
flake8 = "^7.0.0"
black = "^24.3.0"
isort = "^5.13.2"
[tool.poetry.urls]
"Qoherent" = "https://www.qoherent.ai/"
"Documentation" = "https://radiointelligence.io/"
"Source" = "https://github.com/qoherent/ria"
"Issues" = "https://github.com/qoherent/ria/issues"
[tool.poetry.scripts]
ria = "ria_cli.cli:cli"
[tool.black]
line-length = 119
target-version = ["py310", "py311", "py312"]
exclude = '''
/(
\.git
| \.github
| build
| dist
| docs
| venv
| \.venv
| env
| \.env
| \.idea
| \.vscode
)/
'''
[tool.isort]
profile = "black"