-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (50 loc) · 1.67 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "sigmaepsilon.deepdict"
version = "2.0.0"
description = "Common developer utilities for Python projects."
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
]
readme = "README.md"
authors = ["Bence Balogh <[email protected]>"]
maintainers = ["Bence Balogh <[email protected]>"]
license = "MIT"
keywords = ["data structures", "dictionary", "Python", "tree"]
homepage = "https://github.com/sigma-epsilon/sigmaepsilon.deepdict"
repository = "https://github.com/sigma-epsilon/sigmaepsilon.deepdict"
documentation = "https://sigmaepsilondeepdict.readthedocs.io/en/latest/?badge=latest"
packages = [{ include = "sigmaepsilon", from = "src" }]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
sigmaepsilon-core = "^1.2.1"
[tool.poetry.group.dev.dependencies]
flake8 = "^7.0.0"
black = "^24.2.0"
ipykernel = "^6.29.2"
asciitree = "^0.3.3"
tornado = "^6.4"
[tool.poetry.group.test.dependencies]
coverage = "^7.4.1"
pytest = "^8.0.1"
pytest-cov = "^4.1.0"
asciitree = "^0.3.3"
tornado = ">=6.3.3"
[tool.poetry.group.docs.dependencies]
sphinx = "^7.2.6"
ipython = "^8.21.0"
myst-parser = "^2.0.0"
nbsphinx = "^0.9.3"
sphinx-copybutton = "^0.5.2"
sphinx-design = "^0.5.0"
sphinx-inline-tabs = "^2023.4.21"
pydata-sphinx-theme = "^0.15.4"
tornado = ">=6.3.3"