-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (28 loc) · 840 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
from setuptools import setup
setup(name='pyNAMEplot',
version='0.1.5',
description='Plots output of the NAME model',
long_description=open("README.md").read(),
url='https://github.com/TeriForey/pyNAMEplot',
author='Teri Forey',
author_email='[email protected]',
license='LICENSE.txt',
include_package_data=True,
packages=[
'pynameplot',
'pynameplot.namereader',
],
scripts=[
'bin/makemastergrid.py',
'bin/reproject.py',
'bin/zonecsv.py',
'bin/plotter.py',
'bin/multiplotter_solid.py',
'bin/multiplotter_fillcontour.py'
],
entry_points={
'console_scripts': [
'plot_footprints = pynameplot.plot_footprint:main'
]
}
)