-
Notifications
You must be signed in to change notification settings - Fork 66
/
setup.py
62 lines (39 loc) · 1.47 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
from setuptools import setup
from setuptools import find_packages
# Load the README file.
# with open(file="README.md", mode="r") as readme_handle:
# long_description = readme_handle.read()
setup(
name='streamlit_login_auth_ui',
author='Gauri Prabhakar',
author_email='prabhakargauri10@gmail.com',
version='0.1.0',
description='A streamlit library which provides a Login/Sign-Up UI with an option to reset password, also supports cookies.',
# long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/GauriSP10/streamlit_login_signup_ui',
install_requires=[
'streamlit',
'streamlit_lottie',
'extra_streamlit_components',
'streamlit_option_menu',
'trycourier',
'streamlit_cookies_manager',
],
keywords='streamlit, machine learning, login, sign-up, authentication, cookies',
packages=find_packages(),
include_package_data=True,
python_requires='>=3.9.12',
classifiers=[
# 'Intended Audience :: Developers',
# 'Intended Audience :: ML Engineers',
# 'Intended Audience :: Streamlit App Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
# 'Programming Language :: Python :: 3.9.12',
# 'Topic :: Streamlit',
# 'Topic :: Authentication',
# 'Topic :: Login/Sign-Up'
]
)