-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (66 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
76 lines (66 loc) · 1.35 KB
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "pyabc2"
authors = [{name = "zmoon", email = "zmoon92@gmail.com"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"]
dynamic = ["version", "description"]
requires-python = ">=3.10,<4"
dependencies = []
[project.urls]
Home = "https://github.com/zmoon/PyABC2"
Source = "https://github.com/zmoon/PyABC2"
Documentation = "https://pyabc2.readthedocs.io"
[project.optional-dependencies]
sources = [
"numpy ==2.*",
"pandas ==2.*",
"requests ==2.*",
]
abcjs-widget = [
"anywidget",
"ipywidgets",
"traitlets",
]
abcjs-headless = [
"cairosvg",
"nodejs-wheel-binaries",
]
test = [
"mypy",
"pandas-stubs ==2.*",
"pytest",
"pytest-cov",
"pytest-xdist",
]
dev = [
"anywidget[dev]",
"ipython",
"jupyterlab",
]
doc = [
"furo",
"matplotlib",
"myst-nb",
"sphinx ==8.*",
"sphinx-copybutton",
"sphinx-inline-tabs",
]
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
line_length = 100
[tool.pytest.ini_options]
markers = ["slow"]
[tool.mypy]
exclude = ["^venv"]
install_types = true
ignore_missing_imports = true
[tool.pyright]
ignore = ["pyabc2/sources/_lzstring.py"]
[tool.coverage.run]
omit = ["pyabc2/sources/_lzstring.py"]