forked from PablocFonseca/streamlit-aggrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
25 lines (22 loc) · 820 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
[tool.poetry]
name = "streamlit-aggrid"
version = "0.3.3"
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 <pablo.fonseca+pip@gmail.com>"]
readme = "README.md"
exclude = ["**/node_modules/**/*", "**/frontend/src/**/*", "**/.yarn/**/*"]
include = ["**/frontend/build/**/*"]
packages = [{include="st_aggrid"}]
[tool.poetry.dependencies]
python = ">=3.7.8,<4.0"
streamlit = ">=0.87.0"
pandas = ">=1.2"
python-decouple = "^3.6"
[tool.poetry.dev-dependencies]
black = "*"
watchdog = "^2.1.9"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"