ps_plotter/pySmithPlot/setup.py
Luke 190ca4ded5 Inital comit.
Basic transfer function and tank impedance plotting
2018-07-17 18:33:39 -07:00

19 lines
588 B
Python
Executable file

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"])