-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
113 lines (87 loc) · 2.28 KB
/
pyproject.toml
File metadata and controls
113 lines (87 loc) · 2.28 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
[tool.poetry]
name = "datafiles"
version = "2.5"
description = "File-based ORM for dataclasses."
license = "MIT"
authors = ["Jace Browning <jacebrowning@gmail.com>"]
readme = "README.md"
homepage = "https://pypi.org/project/datafiles"
documentation = "https://datafiles.readthedocs.io"
repository = "https://github.com/jacebrowning/datafiles"
keywords = [
"dataclasses",
"serialization",
"type-annotations",
"object-relational mapping",
"YAML",
"JSON",
"JSON5",
"TOML",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = "^3.10"
# Formats
json5 = ">=0.13.0"
"ruamel.yaml" = ">=0.18.10,<0.20.0"
tomlkit = ">=0.10.1,<0.15.0"
# ORM
parse = "^1.12"
# Utilities
cached_property = ">=1.5,<3.0"
classproperties = "^0.2"
minilog = "^2.3"
[tool.poetry.group.dev.dependencies]
# Formatters
black = ">=24.3,<27.0"
isort = ">=5.10,<9.0"
# Linters
mypy = "^1.18.1"
pylint = ">=3.3.8,<4.1.0"
pydocstyle = "*"
# Testing
pytest = ">=6.2.5,<10.0.0"
pytest-describe = ">=2,<4"
pytest-expecter = "^3.0"
pytest-mock = "*"
pytest-random = "*"
pytest-repeat = "*"
pytest-watch = "*"
pytest-cov = ">=2.8.1,<8.0.0"
pytest-profiling = "*"
# Coverage
coveragespace = "^6.0"
# Documentation
mkdocs = "^1.4"
pygments = "^2.15"
# Notebooks
ipython = "^8.14.0"
notebook = { version = "^7.1.1", markers = "os.name != 'nt'" }
nbstripout = ">=0.7.1,<0.10.0"
papermill = { version = "^2.6", markers = "os.name != 'nt'" }
six = "*" # missing papermill dependency
[tool.poetry.requires-plugins]
poetry-plugin-export = ">=1.8"
[tool.black]
quiet = true
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0"]
build-backend = "poetry.core.masonry.api"