-
Notifications
You must be signed in to change notification settings - Fork 37
/
pyproject.toml
100 lines (90 loc) · 2.73 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
# Copyright (c) 2022 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-flow"
version = "0.29.0"
description = "Simple workflow management for signac projects."
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 = ["workflow management"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"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",
]
dependencies = [
# The core package.
"signac>=2.2.0",
# For the templated generation of (submission) scripts.
"jinja2>=3.0.0",
# To enable the parallelized execution of operations across processes.
"cloudpickle>=1.6.0",
# Deprecation management
"deprecation>=2.0.0",
# Progress bars
"tqdm>=4.60.0",
# For schema validation
"jsonschema>=4.5.0",
]
[project.scripts]
flow = "flow.__main__:main"
[project.urls]
Homepage = "https://signac.io"
Documentation = "https://docs.signac.io"
Download = "https://pypi.org/project/signac-flow/"
Source = "https://github.com/glotzerlab/signac-flow"
Issues = "https://github.com/glotzerlab/signac-flow/issues"
[tool.setuptools]
packages = { find = { namespaces = false, exclude = ["tests*"] } }
script-files = ["bin/simple-scheduler"]
[tool.black]
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
| flow/util/mistune
)/
)
'''
[tool.isort]
profile = 'black'
skip_glob = 'flow/util/mistune/*'
[tool.coverage.run]
branch = true
concurrency = [ "thread" , "multiprocessing" ]
parallel = true
source = [ "flow" ]
omit = [ "*/flow/templates/*.pyt", "*/flow/util/mistune/*.py" ]
[tool.pydocstyle]
convention = "numpy"
match-dir = "^((?!\\.|tests|mistune).)*$"
ignore-decorators = "deprecated"
[tool.pytest.ini_options]
filterwarnings = [
"ignore:.*The env argument is deprecated*:DeprecationWarning",
"ignore:Returning format strings in a cmd:FutureWarning"
]