Fakultas Ilmu Komputer UI

Skip to content
Snippets Groups Projects
Commit b4a44e43 authored by DhanarSantika's avatar DhanarSantika
Browse files

Adding some mandatory files

parent 507b861c
No related branches found
No related tags found
No related merge requests found
# flask-sso-ui
Library python yang disediakan untuk aplikasi berbasis Flask
menggunakan SSO Universitas Indonesia.
## Instalasi
`pip install flask-sso-ui`
\ No newline at end of file
setup.py 0 → 100644
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="flask-sso-ui",
version="0.1.0",
description="A simple SSO UI CAS wrapper for Flask",
author="Made Wira Dhanar Santika",
author_email="dhanar.santika@gmail.com",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/DhanarSantika/flask-sso-ui",
license="MIT",
packages=["flask_sso_ui"],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
],
include_package_data=True,
install_requires=["python-cas", "flask", "requests"]
)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment