-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 818 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (34 loc) · 818 Bytes
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
[tool.poetry]
name = "py-utilz"
version = "0.4.1"
description = "Faster, easier, more robust python data analysis"
authors = ["ejolly <eshin.jolly@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "utilz" }]
[tool.poetry.dependencies]
python = "^3.8"
numpy = "^1.16"
pandas = "^1.2.0"
matplotlib = "^3.1.0"
seaborn = ">=0.12.0"
joblib = "^1.1.0"
toolz = "^0.12.0"
tqdm = "^4.64.1"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
mkdocs = "^1.4.0"
mkdocs-material = "^8.5.3"
mkdocstrings-python = "^0.7.1"
mkdocs-jupyter = "^0.22.0"
pytest = "^7.1.3"
ipykernel = "^6.16.0"
pycodestyle = "^2.9.1"
pytest-cov = "^3.0.0"
pytest-sugar = "^0.9.5"
black = "^23.3.0"
ipdb = "^0.13.13"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"