-
Notifications
You must be signed in to change notification settings - Fork 230
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 1.22 KB
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
[project]
name = "streamlit-aggrid"
version = "1.2.0-2"
description = "Streamlit component implementation of ag-grid"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Pablo Fonseca", email = "pablo.fonseca+pip@gmail.com" }]
keywords = ["streamlit", "ag-grid", "component"]
dependencies = ["streamlit >=1.2", "pandas >=1.4.0", "python-decouple"]
[project.urls]
homepage = "https://github.com/PablocFonseca/streamlit-aggrid"
[tool.poetry]
packages = [{ include = "st_aggrid/**/*.py" }]
#exclude = [{ path = "st_aggrid/frontend/**/*" }]
include = [
{ path = "st_aggrid/frontend/build/**/*", format = [
"sdist",
"wheel",
] },
{ path = "st_aggrid/json/**/*.json", format = [
"sdist",
"wheel",
] },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.group.dev.dependencies]
bs4 = "^0.0.2"
playwright = "^1.51.0"
pytest = "^8.3.5"
pytest-playwright = "^0.7.0"
watchdog = "^6.0.0"
ruff = "*"
streamlit-code-editor = "^0.1.12"
pytest-cov = "^6.2.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"