-
Notifications
You must be signed in to change notification settings - Fork 36
/
pyproject.toml
115 lines (103 loc) · 2.99 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# Copyright (c) 2020 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 = "signac"
version = "2.2.0"
description = "Manage large and heterogeneous data spaces on the file system."
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 = "Carl Simon Adorf et al.", email = "[email protected]" }]
keywords = ["simulation", "database", "index", "collaboration", "workflow"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Physics",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
# Platform-independent file locking
"filelock>=3.0",
# Used for version parsing and comparison
"packaging>=15.0",
# Synced collections for signac's backend
"synced_collections>=1.0.0",
# Progress bars
"tqdm>=4.46.1",
]
[project.optional-dependencies]
h5 = ["h5py"]
[project.scripts]
signac = "signac.__main__:main"
[project.urls]
Homepage = "https://signac.io"
Documentation = "https://docs.signac.io"
Download = "https://pypi.org/project/signac/"
Source = "https://github.com/glotzerlab/signac"
Issues = "https://github.com/glotzerlab/signac/issues"
[tools.setuptools.packages.find]
namespaces = false
exclude = ["tests*", "benchmarks*"]
[tool.black]
target-version = ['py38']
include = '\.pyi?$'
force-exclude = '''
(
/(
\.eggs
| \.git
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
| _vendor
)/
)
'''
[tool.isort]
profile = 'black'
skip_glob = 'signac/_vendor/*'
[tool.pydocstyle]
convention = "numpy"
match-dir = "^((?!\\.|tests|_vendor).)*$"
ignore-decorators = "deprecated"
add-ignore = "D105, D107, D203, D204, D213"
[tool.mypy]
ignore_missing_imports = true
scripts_are_modules = true
exclude = [
'signac/_vendor/',
'tests/',
]
[[tool.mypy.overrides]]
module = "signac._vendor.*"
follow_imports = 'skip'
[tool.pytest.ini_options]
xfail_strict = true
filterwarnings = [
"error",
"ignore::DeprecationWarning:dateutil.*",
"ignore:\\sPyarrow will become a required dependency of pandas:DeprecationWarning",
]
[tool.coverage.run]
branch = true
concurrency = ["thread", "multiprocessing"]
parallel = true
source = [ "signac" ]
omit = [ "*/signac/_vendor/*" ]