forked from kfrlib/dspplot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 973 Bytes
/
setup.py
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
from setuptools import setup
setup(name='dspplot',
version='0.0.1',
use_2to3=False,
author='KFRLIB.COM',
maintainer='KFRLIB.COM',
url='https://kfrlib.com/dspplot/',
description="Small python plotting library for DSP purposes",
long_description="Small python plotting library for DSP purposes",
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Visualization',
],
license='MIT',
packages=['dspplot'],
package_data={'dspplot': []},
install_requires=['matplotlib', 'numpy', 'scipy'],
zip_safe=False)