-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 1.02 KB
/
Copy pathpyproject.toml
File metadata and controls
35 lines (31 loc) · 1.02 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
[build-system]
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"
[project]
name = "sofia-filter-studio"
version = "0.1.0"
description = "Modern cross-platform rewrite of the legacy SOFIA analog filter design tool."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "Proprietary" }
authors = [
{ name = "Codex Migration Bootstrap" }
]
keywords = ["filters", "analog", "spice", "sallen-key", "chebyshev", "butterworth"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
]
[project.scripts]
sofia = "sofia_filter_studio.cli:main"
sofia-gui = "sofia_filter_studio.gui.app:main"
[tool.hatch.build.targets.wheel]
packages = ["src/sofia_filter_studio"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]