forked from chrisglass/django-rulez
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 1 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
version = '0.2.5'
setup(
name='django-rulez',
version=version,
description="A lean and mean object-level rules system for the Django framework",
long_description=read('README.rst'),
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
"Framework :: Django",
"Environment :: Web Environment",
],
keywords=['authorization', 'backends', 'django', 'rules', 'permissions', 'rulez'],
author='Christopher Glass',
author_email='tribaal@gmail.com',
url='http://github.com/cglass/django-rulez',
license='BSD',
packages=find_packages(),
zip_safe=False,
)