-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 848 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 848 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
39
40
[tool.poetry]
name = "tidify"
version = "0.1.2"
description = "Convert nested objects into tidy data"
authors = ["Austin Howard <austin@tangibleintelligence.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/tangibleintelligence/tidify"
repository = "https://github.com/tangibleintelligence/tidify"
keywords = [
"Tidy Data",
"Data Analysis"
]
classifiers = [
"Development Status :: 4 - Beta",
]
[tool.poetry.dependencies]
python = "^3.8"
pandas = "^1.4.2"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
jupyterlab = "^3.4.3"
nb-black = "^1.0.7"
black = "^22.3.0"
tabulate = "^0.8.9"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
known_local_folder=["tidify"]
profile = "black"
line_length = 140
multi_line_output = 3
[tool.black]
line-length = 140