-
Notifications
You must be signed in to change notification settings - Fork 61
/
setup.py
34 lines (30 loc) · 1.06 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
from setuptools import setup, find_packages
from os.path import dirname, realpath, join
CURRENT_DIR = dirname(realpath(__file__))
with open(join(CURRENT_DIR, "README.rst")) as long_description_file:
long_description = long_description_file.read()
setup(
name="Flask-RBAC",
version="0.5.0",
url="https://github.com/shonenada/flask-rbac",
author="Yaoda Liu",
author_email="[email protected]",
description="RBAC support for Flask",
long_description=long_description,
zip_safe=False,
packages=find_packages(exclude=["docs"]),
include_package_data=True,
platforms="any",
install_requires=["Flask>=0.10"],
classifiers=[
"Framework :: Flask",
"Environment :: Web Environment",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
)