-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (48 loc) · 1.53 KB
/
setup.py
File metadata and controls
52 lines (48 loc) · 1.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
"""
PyKisSpice - Python Circuit Simulator
A SPICE-compatible circuit simulator rewritten in Python
Requirements:
numpy>=1.20.0
scipy>=1.7.0
matplotlib>=3.4.0 (optional, for plotting)
"""
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="pykisspice",
version="1.0.0",
description="PyKisSpice - Python Circuit Simulator (SPICE compatible)",
long_description=long_description,
long_description_content_type="text/markdown",
author="PyKisSpice Team",
license="MIT",
packages=find_packages(),
install_requires=[
"numpy>=1.20.0",
"scipy>=1.7.0",
],
extras_require={
"plotting": ["matplotlib>=3.4.0"],
},
entry_points={
"console_scripts": [
"pykisspice=pykisspice.__main__:main",
],
},
python_requires=">=3.8",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
],
keywords="spice circuit simulator electronics EDA",
url="https://github.com/NoEvaa/PyKisSpice",
)