-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 824 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name='vdnetcdf',
version='0.2.0.dev',
description='A VisiData plugin for reading NetCDF files.',
maintainer='Tim Tröndle',
maintainer_email='tim.troendle@usys.ethz.ch',
url='https://www.github.com/timtroendle/vdnetcdf',
packages=find_packages(exclude=['tests*']),
include_package_data=True,
install_requires=['visidata>=2.0', 'xarray', 'netcdf4', 'numpy>=1.16.5'],
classifiers=[
'Environment :: Console',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering'
]
)