-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
59 lines (53 loc) · 2.18 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
54
55
56
57
58
59
import setuptools
import versioneer
LONG_DESCRIPTION = """
**aospy**: automated gridded climate data analysis and management
A framework that enables automated calculations using gridded climate data.
Following some basic description of where your data lives and defining any
functions of variables stored in that data you want to compute, aospy enables
you to fire off an arbitrary number of calculations using that data.
Important links
---------------
- HTML documentation: http://aospy.readthedocs.io/en/latest
- Mailing list: https://groups.google.com/d/forum/aospy
- Issue tracker: https://github.com/spencerahill/aospy/issues
- Source code: https://github.com/spencerahill/aospy
"""
setuptools.setup(
name="aospy",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=setuptools.find_packages(),
author="aospy Developers",
author_email="[email protected]",
description="Automated gridded climate data analysis and management",
long_description=LONG_DESCRIPTION,
install_requires=['numpy >= 1.7',
'scipy >= 0.16',
'pandas >= 0.15.0',
'netCDF4 >= 1.2',
'toolz >= 0.7.2',
'dask >= 0.14',
'distributed >= 1.17.1',
'xarray >= 0.14.1',
'cloudpickle >= 0.2.1',
'cftime >= 1.0.0'],
tests_require=['pytest >= 3.3'],
package_data={'aospy': ['test/data/netcdf/*.nc']},
scripts=['aospy/examples/aospy_main.py',
'aospy/examples/example_obj_lib.py'],
license="Apache",
keywords="climate science netcdf xarray",
url="https://github.com/spencerahill/aospy",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Atmospheric Science'
]
)