-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (86 loc) · 2.53 KB
/
Copy pathpyproject.toml
File metadata and controls
95 lines (86 loc) · 2.53 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
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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "opendpd"
version = "2.1.0"
description = "An end-to-end learning framework for modeling power amplifiers and digital pre-distortion"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
authors = [
{name = "Chang Gao", email = "chang.gao@tudelft.nl"},
{name = "Yizhuo Wu", email = "yizhuo.wu@tudelft.nl"},
{name = "Ang Li", email = "a.li-2@tudelft.nl"},
]
maintainers = [
{name = "Chang Gao", email = "chang.gao@tudelft.nl"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"torch>=2.4.0",
"numpy>=2.0.0",
"scipy>=1.7.0",
"pandas>=1.3.0",
"matplotlib>=3.4.0",
# Pillow is imported directly for the v2.1 GIF-animation feature
# (utils/plotting.py). matplotlib pulls it in transitively, but we
# depend on it explicitly since we import PIL ourselves.
"pillow>=9.0.0",
"tqdm>=4.62.0",
"rich>=10.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"pytest-cov>=2.0",
"black>=21.0",
"flake8>=3.9",
# Packaging tools used to build and validate the distribution locally
# (the same commands run in CI and the publish workflow).
"build>=1.0",
"twine>=4.0",
]
[project.urls]
Homepage = "https://github.com/lab-emi/OpenDPD"
Documentation = "https://github.com/lab-emi/OpenDPD/blob/main/README.md"
Repository = "https://github.com/lab-emi/OpenDPD"
Issues = "https://github.com/lab-emi/OpenDPD/issues"
[project.scripts]
opendpd-cli = "opendpd.cli:main"
[tool.setuptools]
py-modules = ["arguments", "project", "models", "main"]
[tool.setuptools.packages.find]
include = [
"opendpd",
"opendpd.*",
"modules",
"modules.*",
"steps",
"steps.*",
"utils",
"utils.*",
"quant",
"quant.*",
"backbones",
"backbones.*",
"datasets",
"datasets.*"
]
[tool.setuptools.package-data]
datasets = ["*/spec.json", "*/*.csv"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"extended: long-running tests executed only by the scheduled Weekly workflow",
]