Inital comit.

Basic transfer function and tank impedance plotting
This commit is contained in:
Luke 2018-07-17 18:33:39 -07:00
commit 190ca4ded5
12 changed files with 4221 additions and 0 deletions

19
pySmithPlot/setup.py Executable file
View 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"])