-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
88 lines (85 loc) · 1.73 KB
/
setup.cfg
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
[metadata]
name = ooi_harvester
maintainer = Landung Setiawan
maintainer_email = [email protected]
description = Tools to harvest OOI Data via M2M API
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/ooi-data/ooi-harvester
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
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Scientific/Engineering
author = Landung Setiawan
author_email = [email protected]
platforms = OS Independent
[options]
packages = find:
platforms = any
include_package_data = True
install_requires =
fsspec
requests
s3fs<2022.8.0
dask
loguru
pandas
progressbar2
typer
zarr
xarray
netcdf4
zarr
lxml
gspread
fastparquet
pygithub
pendulum
siphon
prefect<2
requests-html
rechunker
pydantic<2
python_requires = >=3.8
setup_requires =
setuptools_scm
[options.entry_points]
console_scripts =
ooi-harvester = ooi_harvester.cli:app
[options.extras_require]
test =
pytest
pytest-cov
pytest-flake8
pytest-xdist
pytest-mock
pytest-docker
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