-
Notifications
You must be signed in to change notification settings - Fork 107
/
setup.py
31 lines (29 loc) · 942 Bytes
/
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
#!/usr/bin/env python2
#Copyright (C) 2014, Cameron Brandon White
# -*- coding: utf-8 -*-
import setuptools
if __name__ == "__main__":
setuptools.setup(
name="Flask-CAS",
version="0.2.0",
description="Flask extension for CAS",
author="Cameron Brandon White",
author_email="[email protected]",
packages=[
"flask_cas",
],
install_requires = [
"Flask",
],
include_package_data=True,
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
use_2to3=True,
)