-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (31 loc) · 806 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
31
32
33
34
35
36
37
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def read_desc(fname):
'''
Load long description from specified file.
'''
this_dir = os.path.abspath(os.path.dirname(__file__))
descfile = os.path.join(this_dir, fname)
with open(descfile, encoding='utf-8') as dsf:
long_desc = dsf.read()
return long_desc
setup(
name='n3ox-utils',
version='0.2.9',
author='Daniel S. Zimmerman, N3OX',
author_email='[email protected]',
description=('Antenna and transmission line '
'utilities. Near field animations.'),
license='MIT',
packages=[
'n3ox_utils',
],
install_requires=[
'numpy',
'matplotlib',
'cycler',
'colorcet',
],
long_description=read_desc('README.md'),
)