forked from datastore/datastore
-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
57 lines (46 loc) · 1.39 KB
/
pyproject.toml
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
[build-system]
requires = ["flit_core ~= 2.0"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "datastore"
author = ""
author-email = ""
home-page = "https://github.com/ipfs/py-datastore"
keywords = "ipfs datastore database development"
license = "MIT License"
description-file = "README.md"
requires-python = ">=3.7"
# Keep this in sync with `tox.deps` of “tox.ini”
requires = [
"trio >= 0.12.0, < 0.14"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Topic :: Scientific/Engineering",
"Topic :: System :: Filesystems",
# Pick your license as you wish (should match "license" above)
"License :: OSI Approved :: MIT License",
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
# This package has type annotations
"Typing :: Typed"
]
[tool.flit.metadata.urls]
Chat = "https://matrix.to/#/!BjPVgBWvlihAKfBaaQ:ninetailed.ninja?via=ninetailed.ninja&via=matrix.org&via=librem.one"
#Documentation = ""
[tool.isort]
known_third_party = [
"pytest"
]
skip = [
".tox",
"datastore/__init__.py",
"datastore/abc.py",
"datastore/typing.py",
"datastore/util.py"
]