-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
43 lines (40 loc) · 1.18 KB
/
setup.cfg
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
[metadata]
name = ngspice
author = Sean Leavey
author_email = [email protected]
license = BSD 3-Clause License
license_files =
LICENSE
url = https://github.com/SeanDS/pyngspice
description = Python interface to Ngspice, a mixed-level/mixed-signal circuit simulator
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 4 - Beta
Topic :: Scientific/Engineering
Intended Audience :: Science/Research
Intended Audience :: Education
Natural Language :: English
License :: OSI Approved :: BSD Licence
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: Unix
Operating System :: MacOS
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
project_urls =
Bug Tracker = https://github.com/SeanDS/pyngspice/issues
Source Code = https://github.com/SeanDS/pyngspice/
[options]
packages = find:
python_requires = >=3.8
install_requires =
numpy >= 1.20
[options.package_data]
ngspice = ngspice.pyx
[options.extras_require]
dev =
build
pytest