-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
119 lines (112 loc) · 2.83 KB
/
pyproject.toml
File metadata and controls
119 lines (112 loc) · 2.83 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[build-system]
requires = ["setuptools >= 80.9.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sigkit"
version = "0.0.3"
description = "The Python DSP Toolkit"
authors = [
{ name = "Isaiah Harville" },
{ name = "Joshua Payne" }
]
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
license-files = ["LICENSE"]
dependencies = [
"aiohappyeyeballs==2.6.1",
"aiohttp==3.12.4",
"aiosignal==1.3.2",
"annotated-types==0.7.0",
"asttokens==3.0.0",
"attrs==25.3.0",
"certifi==2025.4.26",
"charset-normalizer==3.4.2",
"click==8.2.1",
"colorama==0.4.6",
"contourpy==1.3.2",
"cycler==0.12.1",
"docker-pycreds==0.4.0",
"executing==2.2.0",
"filelock==3.18.0",
"fonttools==4.58.0",
"frozenlist==1.6.0",
"fsspec==2025.5.1",
"gitdb==4.0.12",
"gitpython==3.1.44",
"icecream==2.1.4",
"idna==3.10",
"iniconfig==2.1.0",
"jinja2==3.1.6",
"kiwisolver==1.4.8",
"lightning==2.5.1.post0",
"lightning-utilities==0.14.3",
"markupsafe==3.0.2",
"matplotlib==3.10.3",
"mpmath==1.3.0",
"multidict==6.4.4",
"narwhals==1.42.0",
"networkx==3.4.2",
"numpy==2.2.6",
"packaging==24.2",
"pillow==11.2.1",
"platformdirs==4.3.8",
"plotly==6.1.2",
"pluggy==1.6.0",
"propcache==0.3.1",
"protobuf==6.31.1",
"psutil==7.0.0",
"pydantic==2.11.5",
"pydantic-core==2.33.2",
"pygments==2.19.1",
"pyparsing==3.2.3",
"pytest==8.3.5",
"python-dateutil==2.9.0.post0",
"pytorch-lightning==2.5.1.post0",
"pyyaml==6.0.2",
"requests==2.32.3",
"ruff==0.11.11",
"sentry-sdk==2.29.1",
"setproctitle==1.3.6",
"six==1.17.0",
"smmap==5.0.2",
"sympy==1.14.0",
"torch==2.7.0",
"torchmetrics==1.7.2",
"torchvision==0.22.0",
"tqdm==4.67.1",
"typing-extensions==4.13.2",
"typing-inspection==0.4.1",
"urllib3==2.4.0",
"wandb==0.19.11",
"yarl==1.20.0",
]
[project.optional-dependencies]
docs = [
"sphinx",
"piccolo_theme",
"tomli"
]
[tool.ruff]
target-version = "py311"
exclude = ["docs/", "examples/", "tests/"]
[tool.ruff.lint]
pydocstyle.convention = "google"
select = ["E4", "E7", "E9", "F", "B", "R", "C", "E", "W", "I", "D"]
unfixable = ["B"]
extend-ignore = [
"D102", # missing docstring in public method
"D103", # missing docstring in public function
"D104", # missing docstring in public package
"D105", # missing docstring in magic method
"D106", # missing docstring in public nested function
"D107", # missing docstring in __init__
]
[tool.ruff.lint.per-file-ignores]
"src/sigkit/models/Module.py" = ["I"]
[tool.setuptools.packages.find]
where = ["src"]
include = ["sigkit", "sigkit.*"]
[project.urls]
Homepage = "https://github.com/IsaiahHarvi/SigKit"
Documentation = "https://isaiahharvi.github.io/SigKit/api/modules.html"