-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
45 lines (38 loc) · 948 Bytes
/
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
[tool.poetry]
name = "seaflowpy"
version = "14.3.3"
description = "A Python library for SeaFlow data"
authors = ["Chris Berthiaume <[email protected]>"]
readme = "README.md"
license = "GPL-3.0-only"
packages = [
{ include = "seaflowpy", from = "src" },
]
include = [
{ path = "tests", format = "sdist" },
]
[tool.poetry.scripts]
seaflowpy = "seaflowpy.cli:run"
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1.7"
joblib = "1.4.2"
pandas = {extras = ["performance"], version = "~2.1.4"}
pyarrow = "^13.0.0"
sqlalchemy = "^2.0.21"
tsdataformat = "^3.0.0"
zstandard = "^0.21.0"
tqdm = "^4.66.4"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^7.4.2"
pytest-benchmark = "^4.0.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pylint = "^2.17.5"
jupyterlab = "^4.0.6"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"