forked from kstateome/django-cas
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (29 loc) · 1.05 KB
/
setup.py
File metadata and controls
35 lines (29 loc) · 1.05 KB
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
import os
from setuptools import setup, find_packages
version = '1.0.0'
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='django-cas',
version=version,
description="Django Cas Client",
long_description=read('README.md'),
classifiers=[
"Development Status :: Development",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
"Topic :: Utilities",
"License :: OSI Approved :: Private",
],
keywords='k-state-common',
author='Derek Stegelman, Garrett Pennington',
author_email='derekst@k-state.edu, garrett@k-state.edu',
url='https://github.com/BioComputing/django-cas',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=True,
)