-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (33 loc) · 1.09 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
[tool.poetry]
name = "stream-wars"
version = "0.0.0-dev" # dynamically set in CI
description = "Streamlit component to generate the Star Wars crawl text."
authors = ["Murilo Cunha <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://murilo-cunha-stream-wars-stream-warsdocs-slmccu.streamlit.app/"
repository = "https://github.com/murilo-cunha/stream-wars"
keywords = ["streamlit-components", "streamlit", "react"]
include = ["stream_wars/frontend/build/**/*"]
exclude = [
"stream_wars/docs.py",
"stream_wars/frontend/public",
"stream_wars/frontend/src",
"stream_wars/frontend/package.json",
"stream_wars/frontend/yarn.lock"
]
[tool.poetry.dependencies]
python = ">=3.8,<3.9.7 || >3.9.7,<4.0"
streamlit = "^1.12.2"
[tool.poetry.dev-dependencies]
pre-commit = "^2.20.0"
docstring-parser = "^0.15"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# Devtools not in environment, but used in `pre-commit`
[tool.mypy]
files = ["stream_wars"]
disallow_untyped_calls = true
disallow_untyped_defs = true
ignore_missing_imports = true