-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
69 lines (63 loc) · 1.9 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
68
69
[tool.poetry]
authors = ["Integrated Data Service - Dissemination <[email protected]>"]
description = "A tool to generate RDF Data Cube style CSV-W cubes from tidy CSV files. Part of the csvcubed family."
exclude = [
"docs/*",
"tests/*"
]
license = "Apache-2.0"
name = "csvcubed"
packages = [
{include = "csvcubed", from = "src"},
# Adding tests package so we can import in unit/behaviour/stress/profiling tests, but the exlucde above makes sure the
# package doesn't actually include any of theses files.
{include = "tests"}
]
readme = "README.md"
version = "0.4.10"
[tool.poetry.dependencies]
pandas = ">=1.3,<2.1.0"
python = ">=3.9,<3.12"
# v4.18 of the jsonschema library introduces bugs which break our code
# - this should be resolved by us doing issue #854
jsonschema = ">=4.4.0,<=4.17.3"
requests = "^2.27.1"
click = ">=8.0.0"
requests-cache = "^0.9.3"
treelib = "^1.6.1"
uritemplate = "^4.1.1"
# Limiting urllib3 to versions < 2.x.x because of the following issue: https://github.com/kevin1024/vcrpy/issues/688.
# This restraint can be lifted once the fix has been published by removing urllib3 as it is a dependency of other packages.
urllib3 = "^1.0.0"
python-dateutil = "^2.8.2"
csvcubed-models = "^0.1.10"
platformdirs = "^3.5.0"
numpy = "<2.0.0"
setuptools = "<70"
[tool.poetry.dev-dependencies]
csvcubed-devtools = ">=0.2.0"
requests-mock = "~1.9.3"
pytest-vcr = "~1.0.2"
pytest-timeout = "^2.1.0"
mkdocs = "1.4.2"
mkdocs-material = "9.1.3"
mkdocs-mermaid2-plugin = "0.6.0"
py-spy = "^0.3.14"
memory-profiler = "^0.61.0"
matplotlib = "^3.6.2" # Necessary for memory-profiler graphs
sphinx = "^6.1.3"
python-docs-theme = "^2023.3.1"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.pyright]
exclude = [
".venv",
"**/tests",
".git"
]
pythonVersion = "3.11"
[tool.poetry.scripts]
csvcubed = 'csvcubed.cli.entrypoint:entry_point'
[tool.isort]
profile = "black"