-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 1.27 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
[project]
name = "psf_utils"
version = "1.11rc2"
description = "Cadence PSF file utilities"
readme = "README.rst"
keywords = ["cadence", "spectre", "PSF", "simulation"]
authors = [
{name = "Ken Kundert"},
{email = "psf_utils@nurdletech.com"}
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
'Topic :: Scientific/Engineering',
]
requires-python = ">=3.6"
dependencies = [
'docopt',
'inform',
'matplotlib',
'numpy',
'ply==3.10',
'quantiphy',
]
[project.scripts]
list-psf = "psf_utils.list:list_signals"
show-psf = "psf_utils.show:show_signals"
[project.urls]
repository = "https://github.com/kenkundert/psf_utils"
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.ruff]
exclude = [".tox", "doc", "tests", "Diffs"]
[tool.ruff.lint]
select = ["F"]
ignore = []
[tool.ruff.lint.per-file-ignores]
"psf_utils/__init__.py" = ["F401"] # imported but unused