-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
executable file
·67 lines (61 loc) · 1.14 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
# Example configuration for Black.
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
[tool.black]
line-length = 90
target-version = ['py39']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.idea
| \.mypy_cache
| \.pytest_cache
| \.tox
| \.venv
| \.vscode
| \.nox
| \docs
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
| profiling
)/
'''
[tool.poetry]
name = "dentro"
version = "0.1.0"
description = ""
authors = ["William Li <william.li1@me.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
networkx = "^3.1"
ray = "^2.7.1"
matplotlib = "^3.8.0"
numpy = "^1.26.0"
rich = "^13.6.0"
bokeh = "^3.3.2"
[tool.poetry.group.dev.dependencies]
black = "*"
coverage = "*"
mypy = "*"
nox = "*"
pdoc = "*"
pre-commit = "*"
pytest = "*"
pytest-cov = "*"
scalene = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"