-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
112 lines (96 loc) · 2.51 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[tool.poetry]
name = "blitzly"
version = "0.6.2"
description = "Lightning-fast way to get plots with Plotly"
authors = ["Christopher Lemke <[email protected]>", "Prem Srinivasan <[email protected]>"]
packages = [{ include = "blitzly", from = "src" }]
readme = "docs/README.md"
documentation = "https://invia-flights.github.io/blitzly"
repository = "https://github.com/invia-flights/blitzly"
license = "MIT"
include = ["CHANGELOG.md"]
classifiers = [
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization",
"Typing :: Typed",
]
keywords = [
"python",
"data science",
"analytics",
"plotly",
"plotting",
]
[tool.poetry.urls]
Changelog = "https://github.com/invia-flights/blitzly/blob/main/CHANGELOG.md"
Issues = "https://github.com/invia-flights/blitzly/issues"
Discussions = "https://github.com/invia-flights/blitzly/discussions"
Contributing = "https://github.com/invia-flights/blitzly/blob/main/docs/CONTRIBUTING.md"
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
plotly = "5.13.0"
pandas = "1.5.2"
numpy = "1.23.5"
nbformat = "5.7.2"
scikit-learn = "1.2.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
joblib = "1.2.0"
pillow = "9.3.0"
kaleido = "0.2.1"
[tool.poetry.group.dev.dependencies]
black = {extras = ["jupyter"], version = "^23.1.0"}
bandit = "^1.7.4"
isort = "^5.12.0"
mypy = "^1.0.0"
pylint = "^2.16.1"
pre-commit = "^3.0.4"
nbstripout = "^0.6.1"
ssort = "^0.11.6"
[tool.poetry.group.docs.dependencies]
mkdocs = "1.4.2"
mkdocstrings = {extras = ["python"], version = "0.19.1"}
mkdocs-material = "9.0.2"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.test]
optional = true
[tool.poetry.group.docs]
optional = true
[build-system]
requires = ["poetry-core>=1.4.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = [
"tests"
]
[tool.pylint.messages_control]
disable = [
"C0301",
"C0103",
"C0114",
"E0401",
"R0912",
"R0913",
"R0914",
"R0916",
"R1735",
]
[tool.pylint.format]
max-line-length = 88
[tool.mypy]
strict = true
disallow_subclassing_any = false
ignore_missing_imports = true
disallow_any_generics = false
warn_return_any = false
no_namespace_packages = true
exclude = ["tests", "docs"]
[tool.isort]
profile = "black"
skip_glob = ["docs/*"]
src_paths = ["src/blitzly", "tests"]
extend_skip = [".md", ".joblib", ".json", ".yaml", ".yml"]