-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
93 lines (82 loc) · 2.4 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
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
# Copyright (c) 2023 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the BSD 3-Clause License.
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=64.0.0"]
[project]
name = "synced_collections"
version = "1.0.0"
description = "Interact with persistent key-value stores using Pythonic abstractions."
readme = "README.md"
# Supported versions are determined according to NEP 29.
# https://numpy.org/neps/nep-0029-deprecation_policy.html
requires-python = ">=3.8"
license = { file = "LICENSE.txt" }
maintainers = [{ name = "signac Developers", email = "[email protected]" }]
authors = [{ name = "Vyas Ramasubramani et al.", email = "[email protected]" }]
keywords = ["database", "containers"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Topic :: Database",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[project.optional-dependencies]
zarr = ["zarr"]
redis = ["redis"]
mongodb = ["pymongo"]
[project.urls]
Homepage = "https://signac.readthedocs.io"
Documentation = "https://signac.readthedocs.io"
Download = "https://pypi.org/project/synced_collections/"
Source = "https://github.com/glotzerlab/synced_collections"
Issues = "https://github.com/glotzerlab/synced_collections/issues"
[tools.setuptools.packages.find]
namespaces = false
exclude = ["tests*"]
[tool.black]
target-version = ['py38']
include = '\.pyi?$'
force-exclude = '''
(
/(
\.eggs
| \.git
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
)
'''
[tool.isort]
profile = 'black'
[tool.pydocstyle]
convention = "numpy"
match-dir = "^((?!\\.|tests).)*$"
ignore-decorators = "deprecated"
add-ignore = "D105, D107, D203, D204, D213"
[tool.mypy]
ignore_missing_imports = true
scripts_are_modules = true
exclude = [
'tests/',
]
[[tool.mypy.overrides]]
follow_imports = 'skip'
[tool.pytest.ini_options]
xfail_strict = true
filterwarnings = "error"
[tool.coverage.run]
branch = true
concurrency = ["thread", "multiprocessing"]
parallel = true
source = [ "synced_collections" ]