-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
46 lines (40 loc) · 1.02 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
[project]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: Apache License V 2.0",
"Operating System :: OS Independent",
]
[project.urls]
"GitHub" = "https://github.com/tidal-music/per-transformers"
[tool.poetry]
name = "tidal_per_transformers"
version = "0.3.1"
description = "common transformers used by the tidal personalization team."
authors = [
"Loay <[email protected]>",
"Tao <[email protected]>",
"Thomas <[email protected]>",
]
license = "Apache License V 2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10.0"
pyspark = ">=3.5.0"
numpy = "^1.23.0"
pandas = ">=1.4.2"
great-expectations = "0.16.15"
scikit-learn = "1.4.0"
alphabet-detector = "0.0.7"
pyarrow = ">=8.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "8.0.2"
coverage = ">=4.5.2"
pytest-cov = ">=4.1.0"
coveralls = ">=1.6.0"
mock = ">=2.0.0"
moto = ">=3.1.11"
setuptools = ">=69.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"