-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
55 lines (48 loc) · 1.86 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[tool.poetry]
name = "streamlit_parameters"
version = "0.2.0"
description = "Streamlit parameter management for page configuration"
authors = ["Daniel Stonier"]
maintainers = ["Daniel Stonier <d.stonier@gmail.com>"]
readme = "README.md"
license = "BSD"
homepage = "https://github.com/splintered-reality/py_trees"
repository = "https://github.com/splintered-reality/py_trees"
documentation = "https://py-trees.readthedocs.io/en/devel/"
packages = [
{ include = "streamlit_parameters" },
]
classifiers = [
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries'
]
keywords=["streamlit"]
[tool.poetry.dependencies]
# Streamlit has a problem with python 3.9.7
python = ">=3.8,<3.9.7 || >3.9.7,<4.0"
streamlit = { version = ">=1.30,<2"}
[tool.poetry.group.dev.dependencies]
tox = ">=3.26"
pytest = { version = ">=7.1" }
pytest-console-scripts = { version = ">=1.3" }
pytest-mock = { version = ">=3.14.0" }
[tool.poetry.group.format.dependencies]
ufmt = ">=2.8" # black (style) + usort (import order)
# [tool.poetry.group.static.dependencies]
# mypy = ">=0.991"
[tool.poetry.group.lint.dependencies]
# strongly recommended
flake8 = ">=5.0" # combines pyflakes (errors) & pycodestyle (pep8 style)
# flake8-docstrings = ">=1.6" # docstrings (integrates pydocstyle)
# darglint = ">=1.8" # checks docstrings match implementation
# optional, these go above and beyond
# flake8-bugbear = ">=22.9" # bugs & design not strictly pep8
[tool.poetry.scripts]
streamlit-demo-parameters = "streamlit_parameters.demos.parameters:console_main"
[build-system]
requires = ["poetry-core>=1.1.0"]
build-backend = "poetry.core.masonry.api"