-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 1.09 KB
/
setup.py
File metadata and controls
30 lines (29 loc) · 1.09 KB
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 python3
from setuptools import setup, find_packages
setup(name='asc2netcdf',
version='0.3',
description='Reads asc data into netCDF files',
long_description=('The script was written to access the header and to \
calculate the upper right corner centre of a grid. Some information \
form the header is particularily useful when setting up NetCdf files.\
e.g. number of rows and coloumns ect. There is a simple function to \
read the header and spits out a named tuple.'),
classifiers=[
'Development Status :: 3 Alpha',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: GIS',
],
keywords='GIS netCDF',
url='https://github.com/andy3092/asc2netcdf',
author='Andrew Rae',
email='andrew3092@gmail.com',
license='GPL',
packages=find_packages(),
install_requires=[
'numpy',
'netCDF4',
'pytest',
],
include_package_data=True,
zip_safe=False)