-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (56 loc) · 1.64 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
[project]
name = "streamlit-gettext"
version = "0.0.4"
description = "A Streamlit extension for easy localization of your apps"
authors = [{name = "insolor", email = "[email protected]"}]
readme = "README.md"
keywords = ["streamlit", "gettext", "i18n"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.9"
dependencies = [
"streamlit>=1.37.0,<2.0.0",
]
[project.urls]
homepage = "https://github.com/insolor/streamlit-gettext"
repository = "https://github.com/insolor/streamlit-gettext"
# documentation = "https://github.com/insolor/streamlit-gettext"
[dependency-groups]
dev = [
"ruff>=0.8.2",
]
[tool.ruff]
target-version = "py39"
line-length = 120
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"D",
"COM812",
"ISC001",
]
[tool.ruff.lint.per-file-ignores]
"example/*" = [
"DTZ011",
"E501",
"INP001",
"S311",
]
"example/tests/*" = [
"S101", # Don't warn about using of asserts in tests
"ANN201", # Ignore "Missing return type annotation for public function", tests don't return anything
"D", # Don't warn about missing documentation in tests
]