Inital comit.
Basic transfer function and tank impedance plotting
This commit is contained in:
commit
190ca4ded5
12 changed files with 4221 additions and 0 deletions
19
pySmithPlot/setup.py
Executable file
19
pySmithPlot/setup.py
Executable file
|
@ -0,0 +1,19 @@
|
|||
import os
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
def read(fname):
|
||||
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
||||
|
||||
|
||||
setup(name="pysmithplot",
|
||||
version="0.2.0",
|
||||
packages=["smithplot"],
|
||||
description="An extension for Matplotlib providing a projection class to generate high quality Smith Chart plots.",
|
||||
long_description=read('README.md'),
|
||||
author="Paul Staerke",
|
||||
author_email="paul.staerke@gmail.com",
|
||||
license="BSD",
|
||||
url="https://github.com/vMeijin/pySmithPlot",
|
||||
install_requires=["matplotlib >= 1.2.0", "numpy", "scipy"])
|
Loading…
Add table
Add a link
Reference in a new issue