-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (48 loc) · 1.6 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python
import sys
from setuptools import setup
"""setup.py: setuptools control."""
install_requires = [
'numpy>=1.7.0',
'netCDF4>=1.0.8',
]
if sys.version_info < (2, 7):
install_requires.append('argparse>=1.2.1')
setup(
name='layerpack',
version='0.1.0',
description='Command-line tools for packing/unpacking NetCDF arrays in slices',
long_description=open('README.md').read(),
author='Jeremy Silver',
author_email='jeremy.silver@unimelb.edu.au',
## url='http://layerpack.rtfd.org/',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Topic :: System :: Archiving :: Compression'
],
packages=[
'layerpack'
],
entry_points={
'console_scripts': [
'ncpacklayer = layerpack.ncpack:main',
'ncunpacklayer = layerpack.ncunpack:main',
'nccheckdiff = layerpack.nccheckdiff:main'
]
},
install_requires=install_requires
)