-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
31 lines (29 loc) · 1.12 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
from setuptools import find_packages, setup
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name='pangeobench',
scripts=['pangeobench'],
author='Haiying Xu',
author_email='[email protected]',
description='Pangeo IO benchmarking package',
long_description=long_description,
long_description_content_type='text/markdown',
use_scm_version={'version_scheme': 'post-release', 'local_scheme': 'dirty-tag'},
install_requires=['dask>=2.11', 'xarray>=0.14', 'numpy>1.17'],
license='Apache 2.0',
url='https://github.com/pangeo-data/benchmarking',
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering',
],
)