-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
40 lines (39 loc) · 1.05 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import versioneer
INSTALL_REQUIRES = [
"xarray",
"netcdf4",
"typhon",
"tqdm",
"statsmodels",
"intake", # requirements below are for using EUREC4A intake data catalog
"zarr",
"fsspec>=0.7.4",
"pydap",
"s3fs",
"requests",
"aiohttp",
"cfunits",
"intake-xarray",
"ipfsspec",
"msgpack",
"toolz",
]
setup(
name="eurec4a-environment",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="tools for characterising the atmospheric environment during EUREC4A",
url="https://github.com/eurec4a/eurec4a-environment",
maintainer="Leif Denby",
maintainer_email="l.c.denby@leeds.ac.uk",
py_modules=["eurec4a_environment"],
packages=find_packages(),
package_data={"": ["*.csv", "*.yml", "*.html"]},
include_package_data=True,
install_requires=INSTALL_REQUIRES,
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
zip_safe=False,
)