forked from imdreamer2018/streamlit-date-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 810 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (24 loc) · 810 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
import setuptools
from pathlib import Path
README = (Path(__file__).parent/"README.md").read_text()
setuptools.setup(
name="streamlit-date-picker",
version="0.0.3",
author="Yang Qian",
author_email="qian.yang2@thoughtworks.com",
description="this is date picker for streamlit",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/imdreamer2018/streamlit-date-picker",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[],
python_requires=">=3.8",
license_files=("LICENSE",),
install_requires=[
# By definition, a Custom Component depends on Streamlit.
# If your component has other Python dependencies, list
# them here.
"streamlit>=1.27.0",
],
)