-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (39 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
47 lines (39 loc) · 1.13 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
[tool.poetry]
name = "pairwise-compare"
version = "0.0.0"
description = "Allows the user to compare groups of data specified in a tidy pandas dataframe with ease."
authors = ["Cameron Mattson <mattsoncameron1@gmail.com>"]
license = "BSD 3-Clause"
readme = "README.md"
packages = [
{ include = "comparison_tools", from = "src" },
{ include = "comparators", from = "src" },
]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
pathlib2 = "^2.3.7.post1"
pandas = "^2.2.3"
pyarrow = "^18.0.0"
setuptools = ">=14.0"
numpy = "^2.1.3"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pynvim = "^0.5.1"
ipython = "^8.29.0"
matplotlib = "^3.9.2"
pylint = "^3.3.1"
notebook = "^7.2.2"
[tool.poetry.requires-plugins]
poetry-dynamic-versioning = { version = ">=1.0.0,<2.0.0", extras = ["plugin"] }
[tool.poetry-dynamic-versioning]
enable = true
style = "pep440"
vcs = "git"
[tool.poetry-dynamic-versioning.substitution]
files = [
"src/comparison_tools/__init__.py",
"src/comparators/__init__.py"
]
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"