forked from dClimate/ipldstore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
55 lines (49 loc) · 1.31 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
# https://packaging.python.org/en/latest/tutorials/packaging-projects/
# https://setuptools.pypa.io/en/latest/userguide/declarative_config.html
# https://packaging.python.org/en/latest/guides/distributing-packages-using-setuptools/#setup-cfg
[metadata]
name = ipldstore
author = Tobias Kölling
author_email = tobias.koelling@mpimet.mpg.de
description = Zarr storage backend for IPLD
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/d70-t/ipldstore
project_urls =
Bug Tracker = https://github.com/d70-t/ipldstore/issues
# see https://pypi.org/classifiers/
classifiers =
Development Status :: 3 - Alpha
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.8
Operating System :: OS Independent
Natural Language :: English
Typing :: Typed
[options]
packages = find:
python_requires = >=3.8
install_requires =
aiohttp
typing-extensions
typing-validation == 0.0.2
multiformats
dag-cbor == 0.2.2
pure-protobuf >= 2.1.0
numcodecs
requests
cbor2
zarr
[options.package_data]
* = py.typed, *.json
[options.packages.find]
exclude = test
[options.extras_require]
dev =
zarr
mypy
pylint
pytest
pytest-cov
[flake8]
max-line-length = 160