-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (23 loc) · 809 Bytes
/
pyproject.toml
File metadata and controls
27 lines (23 loc) · 809 Bytes
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
[tool.poetry]
name = "streamlit-calendar"
version = "1.4.0"
description = "📆 A Streamlit component to show callendar using FullCalendar (https://fullcalendar.io)"
authors = ["Muhammad Luqman <im.imperativa@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/im-perativa/streamlit-calendar"
# This is required so the frontend code is properly included in the wheel.
include = ["streamlit_calendar/frontend/build/**/*"]
keywords = ["streamlit", "streamlit-component"]
[tool.poetry.dependencies]
python = "^3.9"
streamlit = "^1.12.0"
[tool.poetry.dev-dependencies]
watchdog = "^2.1.9"
black = "^22.6.0"
isort = "^5.10.1"
[tool.poetry.group.dev.dependencies]
bandit = "^1.7.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"