forked from PablocFonseca/streamlit-aggrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
27 lines (23 loc) · 837 Bytes
/
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
[tool.poetry]
name = "streamlit-aggrid"
version = "1.0.5"
description = "Streamlit component implementation of ag-grid"
classifiers = ["Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent"]
homepage = "https://github.com/PablocFonseca/streamlit-aggrid"
authors = ["Pablo Fonseca <[email protected]>"]
readme = "README.md"
exclude = ["**/node_modules/**/*", "**/frontend/src/**/*", "**/.yarn/**/*"]
include = ["**/frontend/build/**/*"]
packages = [{include="st_aggrid"}]
[tool.poetry.dependencies]
python = ">=3.8, !=3.9.7"
streamlit = ">=0.87.0"
pandas = ">=1.2"
python-decouple = "^3.6"
altair = "<5"
[tool.poetry.dev-dependencies]
black = "*"
watchdog = "^2.1.9"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"