-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (36 loc) · 981 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
[tool.poetry]
name = "odd-ml"
version = "0.5.3"
license='Apache-2.0'
description = "SDK for working with pipeline's metadata from notebooks"
authors = ["Open Data Discovery <[email protected]>"]
maintainers=[ "Pavel Makarichev <[email protected]>"]
readme='README.md'
homepage='https://opendatadiscovery.org/'
keywords=['odd','open data discovery', 'metadata', 'machine learning']
[tool.poetry.dependencies]
python = ">=3.8.12,<3.11"
pandas = "^1.4.2"
requests = "^2.27.1"
pydantic = "^1.9.0"
s3path = "^0.3.4"
prettytable = "^3.2.0"
python-dotenv = "^0.20.0"
s3fs = "^2022.3.0"
fastparquet = "^0.8.1"
scipy = "^1.8.1"
pandas-profiling = "^3.2.0"
ipywidgets = "^7.7.1"
numpy = "^1.23.1"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
pytest = "^7.1.2"
isort = "^5.10.1"
ipykernel = "^6.13.0"
notebook = "^6.4.12"
pydantic-factories = "^1.3.0"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"