-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 964 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
32
33
import os
from distutils.core import setup
CURRENT_DIR = os.path.abspath(os.path.dirname(__file__))
README_FILEPATH = os.path.join(CURRENT_DIR, 'README.rst')
setup(
name='django-granular-access',
version='0.1.1',
packages=[
'granular_access',
'granular_access.tests',
'granular_access.migrations'
],
author='Kirill Sibirev',
author_email='k.sibirev@gmail.com',
url='https://github.com/l0kix2/django-granular-access',
description='Flexible permission system for Django.',
long_description=open(README_FILEPATH).read(),
keywords=['django', 'permissions'],
license='MIT',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
],
)