-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
26 lines (25 loc) · 1.89 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
# _*_ coding: utf-8 _*_
from setuptools import setup, find_packages
banner= """
██████╗ ███████╗██╗ ██╗██████╗ ███████╗██████╗ ███╗ ██╗███████╗████████╗██╗ ██████╗███████╗
██╔══██╗██╔════╝╚██╗ ██╔╝██╔══██╗██╔════╝██╔══██╗████╗ ██║██╔════╝╚══██╔══╝██║██╔════╝██╔════╝
██████╔╝███████╗ ╚████╔╝ ██████╔╝█████╗ ██████╔╝██╔██╗ ██║█████╗ ██║ ██║██║ ███████╗
██╔═══╝ ╚════██║ ╚██╔╝ ██╔══██╗██╔══╝ ██╔══██╗██║╚██╗██║██╔══╝ ██║ ██║██║ ╚════██║
██║ ███████║ ██║ ██████╔╝███████╗██║ ██║██║ ╚████║███████╗ ██║ ██║╚██████╗███████║██╗
╚═╝ ╚══════╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝╚══════╝ ╚═╝ ╚═╝ ╚═════╝╚══════╝╚═╝
"""
print banner
setup(
name="microauth",
version='0.1.3',
packages=["microauth", "microauth.resources"],
zip_safe=False,
install_requires=[
"Flask-RESTful",
"Flask-SQLAlchemy",
"bcrypt",
"gevent",
"requests",
"pyopenssl",
]
)