-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
38 lines (34 loc) · 1.19 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
[tool.poetry]
name = "tidypandas"
version = "0.3.0"
description = "A grammar of data manipulation for pandas inspired by tidyverse"
authors = ["Srikanth Komala Sheshachala <[email protected]>", "Ashish Raj <[email protected]>"]
maintainers = ["Srikanth Komala Sheshachala <[email protected]>", "Ashish Raj <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://talegari.github.io/tidypandas/"
repository = "https://github.com/talegari/tidypandas"
documentation = "https://talegari.github.io/tidypandas/_build/html/autoapi/index.html"
classifiers = ["Development Status :: 4 - Beta"]
[tool.poetry.dependencies]
python = "^3.8"
pandas = ">=1.0.0"
collections-extended = ">=2.0.2"
skimpy = {version = ">=0.0.5", optional = true}
[tool.poetry.extras]
skimpy = ["skimpy"]
[tool.poetry.dev-dependencies]
myst-nb = {version = "^0.13.2", python = "^3.8"}
sphinx-autoapi = "^1.8.4"
pytest = "^7.1.1"
palmerpenguins = "^0.1.4"
numpydoc = "^1.2.1"
pydata-sphinx-theme = "^0.8.0"
nycflights13 = "^0.0.3"
plotnine = "^0.8.0"
seaborn = "^0.11.2"
pytest-cov = "^4.0.0"
requests = "^2.28.2, !=2.30.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"