-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
50 lines (48 loc) · 1.58 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
"""
Gluu WebUI
----------
Web user interface for the Gluu cluster management
"""
from setuptools import setup
setup(
name="Gluu-WebUI",
version="0.3",
url="https://github.com/GluuFederation/gluu-webui",
license="MIT",
author="Gluu",
author_email="[email protected]",
description="Web UI for the Gluu cluster management API",
long_description=__doc__,
packages=["gluuwebui"],
include_package_data=True,
zip_safe=False,
install_requires=[
"Flask",
"itsdangerous",
"Jinja2",
"MarkupSafe",
"mccabe",
"requests",
"Werkzeug"
],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: Developers",
"License :: OSI Approved",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
],
entry_points={}
)