-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (40 loc) · 1.27 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
38
39
40
41
42
43
44
45
# Author : Nathan Chen
# Date : 22-Feb-2024
from pathlib import Path
import setuptools
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setuptools.setup(
name="streamlit-datetime-picker",
version="0.0.2",
author="Nathan Chen",
author_email="[email protected]",
description="Streamlit Date and Time Picker",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/NathanChen198/streamlit-datetime-picker",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
python_requires=">=3.8",
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.39.0",
"requests==2.31.0",
"pytest-playwright-snapshot==1.0",
"pytest-rerunfailures==12.0",
]
}
)