-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
65 lines (59 loc) · 1.68 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[tool.poetry]
name = "whyqd"
version = "1.1.3"
description = "data wrangling simplicity, complete audit transparency, and at speed"
authors = ["Gavin Chait <gchait@whythawk.com>"]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://whyqd.com"
repository = "https://github.com/whythawk/whyqd/"
documentation = "https://whyqd.readthedocs.io/"
keywords = ["python", "data-science", "pandas", "open-data", "open-science", "data-analysis", "data-wrangling", "data-management", "munging", "crosswalks"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering"
]
include = [
"whyqd/VERSION",
"tests/data/*"
]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
numpy = ">=1.21.1"
openpyxl = ">=3.0.7"
pandas = ">=1.5.2"
xlrd = ">=2.0.1"
pydantic = "^1.8.2"
tabulate = ">=0.8.9"
ray = ">=2.2.0"
modin = ">=0.25.1,<0.26.0"
randomname = ">=0.2.1"
pyarrow = ">=11.0.0"
setuptools = ">=67.7.2"
python-dotenv = ">=1.0.0"
grpcio = "^1.59.3"
[tool.poetry.group.dev.dependencies]
black = ">=23.1.0"
flake8 = ">=6.0.0"
pytest = ">=7.2.2"
jupyterlab = ">=3.6.1"
[tool.poetry.group.docs.dependencies]
mkdocs = ">=1.4.3"
mkdocs-exclude = ">=1.0.2"
mkdocstrings-python = ">=0.9.0"
mkdocs-redirects = ">=1.2.0"
mkdocs-material = ">=9.1.9"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ["py39"]
[tool.poetry.extras]
docs = ["MKDocs"]