-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
114 lines (104 loc) · 3.02 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
# 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-dashboard"
version = "0.6.1"
description = "Visualize data spaces in a web browser."
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 = "signac-support@umich.edu" }]
authors = [{ name = "Bradley Dice et al.", email = "bdice@bradleydice.com" }]
keywords = ["visualization", "dashboard", "signac", "framework"]
classifiers = [
"Development Status :: 4 - Beta",
"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"
]
dependencies = [
"flask>=2.1.0",
"flask-assets>=2.0.0",
"flask-login>=0.6.0",
"flask-turbolinks",
"jinja2>=3.0.0",
"jsmin",
"libsass",
"markupsafe>=2.0.0",
"natsort",
"signac>=2.0.0",
"watchdog",
"webassets>=2.0.0",
"werkzeug>=2.1.0",
]
[project.scripts]
signac-dashboard = "signac_dashboard.__main__:main"
[project.urls]
Homepage = "https://signac.io"
Documentation = "https://docs.signac.io"
Download = "https://pypi.org/project/signac-dashboard/"
Source = "https://github.com/glotzerlab/signac-dashboard"
Issues = "https://github.com/glotzerlab/signac-dashboard/issues"
[tools.setuptools.packages.find]
namespaces = false
exclude = ["examples*", "tests*"]
[tool.black]
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
| signac_dashboard/static
)/
)
'''
[tool.isort]
profile = 'black'
skip_glob = 'signac_dashboard/static/*'
[tool.pydocstyle]
convention = "numpy"
match = "^((?!\\.sync-zenodo-metadata|setup).)*\\.py$"
match-dir = "^((?!\\.|tests|_vendor).)*$"
ignore-decorators = "deprecated"
# For now, we're skipping "missing docstrings" and just enforcing that existing
# docstrings are high-quality.
add-ignore = "D100, D101, D102, D103, D104, D105, D107, D203, D204, D213"
[tool.mypy]
ignore_missing_imports = true
scripts_are_modules = true
exclude = [
'examples/',
'signac_dashboard/static/',
'tests/',
]
[tool.pytest.ini_options]
xfail_strict = true
filterwarnings = [
"ignore:.*SimpleKeyring is deprecated.*:DeprecationWarning",
"ignore:.*The doc_filter argument was deprecated.*:DeprecationWarning"
]
[tool.coverage.run]
branch = true
concurrency = ["thread", "multiprocessing"]
parallel = true
source = [ "signac" ]
omit = [ "*/signac_dashboard/static/*" ]