-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
107 lines (104 loc) · 1.91 KB
/
setup.cfg
File metadata and controls
107 lines (104 loc) · 1.91 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[metadata]
name = cava_data
maintainer = Landung Setiawan
maintainer_email = landungs@uw.edu
description = Cabled Array Data Access Interface
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/cormorack/cava-data
license = MIT
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
Topic :: Software Development :: Build Tools
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Scientific/Engineering
author = Landung Setiawan
author_email = landungs@uw.edu
platforms = OS Independent
[options]
packages = find:
platforms = any
include_package_data = True
install_requires =
blosc
cytoolz
lz4
fastapi
aiofiles
redis>=4.2
msgpack
kombu
xarray
zarr
dask
netcdf4
s3fs==2022.02.0
fsspec
intake
intake-xarray
jinja2==3.0.3
numcodecs
numpy
xlrd
bottleneck
toolz
gspread
loguru
celery[sqs]
pika
prometheus-fastapi-instrumentator
python_requires = >=3.8
setup_requires =
setuptools_scm
[options.extras_require]
ship =
pyarrow
worker =
datashader
hvplot
numba
gevent
dask_kubernetes
distributed
server =
uvicorn
gunicorn
test =
pytest
pytest-cov
pytest-flake8
pytest-xdist
pytest-mock
watchgod
lint =
black
check-manifest
flake8
flake8-builtins
flake8-comprehensions
flake8-mutable
flake8-print
isort
mypy
numpydoc
pre-commit
pylint
docs =
sphinx
sphinx-automodapi
all =
%(test)s
%(lint)s
%(docs)s
%(worker)s
%(ship)s
[options.entry_points]
console_scripts =
cava_data = cava_data.cli:serve
cava_data_worker = cava_data.cli:worker