-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
70 lines (59 loc) · 1.6 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
66
67
68
69
70
[tool.poetry]
name = "ZenTables"
version = "0.2.0b3"
description = "Stress-free descriptive tables in Python."
authors = [
"Paul Xu <[email protected]>",
"Edward Huh <[email protected]>",
"Kevin Wilson <[email protected]>",
"The Policy Lab <[email protected]>"
]
license = "MIT"
packages = [
{ include = "zentables", from = "src" }
]
readme = "README.md"
repository = "https://github.com/thepolicylab/ZenTables.git"
keywords = ["pandas", "tables", "display", "styler"]
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
]
[tool.poetry.dependencies]
python = "^3.7.1"
pandas = "^1.3.0"
Jinja2 = "^3.0.1"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
pylint = "^2.6.0"
pytest = "^6.2.1"
isort = "^5.7.0"
ipdb = "^0.13.4"
pytest-asyncio = "^0.14.0"
nb-black = "^1.0.7"
jupyterlab = "^3.0.16"
mypy = "^0.910"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 88
[tool.pylint.basic]
good-names = "i,j,k,ex,Run,_,df,pc"
[tool.pylint.messages_control]
disable = "C0330, C0326, R0912, R0913, R0914, R0915"
[tool.pylint.format]
max-line-length = "88"
[tool.mypy]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"