-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
37 lines (34 loc) · 1.08 KB
/
setup.py
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
from pathlib import Path
import setuptools
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setuptools.setup(
name="streamlit-condition-tree",
version="0.3.0",
author="Cédric Villette",
author_email="[email protected]",
description="Condition Tree Builder for Streamlit",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/cedricvlt/streamlit-condition-tree",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[],
python_requires=">=3.7",
install_requires=[
# By definition, a Custom Component depends on Streamlit.
# If your component has other Python dependencies, list
# them here.
"streamlit >= 0.63",
],
extras_require={
"devel": [
"wheel",
"pytest==7.4.0",
"playwright==1.36.0",
"requests==2.31.0",
"pytest-playwright-snapshot==1.0",
"pytest-rerunfailures==12.0",
]
}
)