-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (53 loc) · 1.79 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
56
57
58
59
[tool.poetry]
name = "onecode_st"
version = "1.0.0.dev"
description = "Streamlit plugin for OneCode"
readme = "README.md"
authors = ["DeepLime <[email protected]>"]
license = "MIT"
keywords = ["onecode", "plugin", "streamlit"]
homepage = "https://github.com/deeplime-io/onecode-streamlit"
repository = "https://github.com/deeplime-io/onecode-streamlit"
documentation = "https://deeplime-io.github.io/onecode-streamlit"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Code Generators"
]
[tool.poetry.dependencies]
python = ">=3.8, <3.13"
onecode = ">=1"
pydash = ">=5.1.0,<8"
python-slugify = ">=6.1.2,<9"
strenum = ">=0.4.6,<1"
# streamlit
streamlit = { version = ">=1.12.0,<1.18", optional = true }
streamlit-image-select = { version = "^0.5.1", optional = true }
streamlit-option-menu = { version = "^0.3.2", optional = true }
streamlit_tree_select = { version = "^0.0.5", optional = true }
altair = { version = "<5", optional = true }
# tests
datatest = { version = ">=0.11.1,<1", optional = true }
pytest = { version = ">=6.2.0,<8", optional = true }
pytest-cov = { version = ">=2.10.1,<5", optional = true }
pytest-xdist = { version = ">=3.1.0,<4", optional = true }
[tool.poetry.extras]
test = [
"datatest",
"pytest",
"pytest-cov",
"pytest-xdist"
]
[tool.poetry.scripts]
onecode-streamlit = 'onecode_st.cli.start:main'
onecode-build = 'onecode_st.cli.build:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"