-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
79 lines (71 loc) · 1.53 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
[build-system]
requires = [
"flit_core >=3,<4"
]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "statelit"
home-page = "https://github.com/dwreeves/statelit"
license = "MIT"
author = "Daniel Reeves"
author-email = "[email protected]"
description-file = "README.md"
classifiers = [
"Framework :: Apache Airflow",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
requires = [
"streamlit",
"pydantic<2"
]
requires-python = ">=3.7"
[tool.flit.metadata.requires-extra]
test = [
"pre-commit",
"pytest",
"pytest-cov",
"isort",
"flake8",
"flakeheaven>3",
# Supported third party libraries
"pandas"
]
doc = [
"mkdocs",
"pymdown-extensions",
"mkdocs-material",
"mkdocs-macros-plugin",
"pygments",
"markdown-include"
]
[tool.isort]
src_paths = [
"statelit"
]
lines_after_imports = 2
force_single_line = true
line_length = 120
[tool.pytest.ini_options]
addopts = "-v --cov=statelit"
testpaths = [
"tests"
]
[tool.flakeheaven]
exclude = [
"venv/",
".git/",
"dist/",
".pytest_cache/"
]
max_line_length = 120
[tool.flakeheaven.plugins]
pycodestyle = ["+*", "-W503"]