-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
30 lines (28 loc) · 1006 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
27
28
29
30
#!/usr/bin/env python
from setuptools import setup, find_packages
from antpat import __version__
setup(name='AntPat',
version=__version__,
description='Antenna pattern tools.',
author='Tobia D. Carozzi',
author_email='[email protected]',
packages=find_packages(exclude=('tests', 'docs')),
license='ISC',
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: ISC License',
'Programming Language :: Python :: 2.7',
'Topic :: Communications :: Ham Radio',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Visualization'
],
install_requires=[
'numpy>=1.10',
'scipy>=0.16',
'matplotlib'
],
scripts=['scripts/viewFFpat.py',
'scripts/viewJonespat.py',
'scripts/viewJonespat_dual.py']
)