-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 993 Bytes
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 993 Bytes
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mcbackend"
version = "0.5.4"
description = "Framework agnostic backends for MCMC sample storage"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.12"
license = "AGPL-3.0-or-later"
license-files = ["LICENSE"]
authors = [ { name = "Michael Osthege", email = "michael.osthege@outlook.com" } ]
urls = { "Homepage" = "https://github.com/michaelosthege/mcbackend" }
classifiers = [
"Programming Language :: Python",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
]
dependencies = [
"betterproto==2.0.0b7",
"hagelkorn",
"numpy",
"pandas",
]
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
"mcbackend" = ["py.typed"]
[tool.pytest.ini_options]
xfail_strict=true
[tool.black]
line-length = 100
[tool.mypy]
exclude = [
"^mcbackend/test_*",
]
ignore_missing_imports = true