forked from dabapps/django-user-roles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·24 lines (22 loc) · 856 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
from setuptools import setup, find_packages
setup(
name = 'custom-user-roles',
version = '1.1.0',
# original author = 'Tom Christie'
# original author_email = '[email protected]'
author = "Diogo Laginha",
author_email = "[email protected]",
url = 'https://github.com/laginha/django-user-roles',
description = "Simple role-based user permissions for Django.",
packages = find_packages(where='src'),
package_dir = {'': 'src'},
install_requires = ['django', 'milkman'],
extras_require = {},
zip_safe = False,
license = 'MIT',
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Intended Audience :: Developers',
]
)