-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
58 lines (49 loc) · 1.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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "dials_data"
version = "2.4.0"
description = "DIALS Regression Data Manager"
authors = [
{ name = "DIALS development team", email = "dials-support@lists.sourceforge.net" },
]
license = { text = "BSD 3-Clause License" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
keywords = ["dials", "dials_data"]
dynamic = ["readme"]
requires-python = ">=3.9"
dependencies = ["pyyaml", "requests", "py", "importlib_resources~=6.3"]
[project.optional-dependencies]
test = ["coverage", "pytest"]
doc = ["Sphinx~=6.2", "sphinx_rtd_theme~=1.3"]
[project.urls]
Homepage = "https://github.com/dials/data"
"Bug Tracker" = "https://github.com/dials/data/issues"
Documentation = "https://dials-data.readthedocs.io/"
"Source Code" = "https://github.com/dials/data"
[project.entry-points]
"libtbx.precommit" = { dials_data = "dials_data" }
pytest11 = { dials_data = "dials_data.pytest11" }
[project.scripts]
"dials.data" = "dials_data.cli:main"
[tool.setuptools.dynamic]
readme = { file = ["README.rst", "HISTORY.rst"], content-type = "text/x-rst" }
[tool.ruff.lint]
ignore = ["E501"]
select = ["E", "F", "I", "C4"]
[tool.ruff.lint.isort]
required-imports = ["from __future__ import annotations"]
[[tool.mypy.overrides]]
module = ["py", "py.path", "pytest", "importlib_resources"]
ignore_missing_imports = true