forked from lmorchard/django-teamwork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (33 loc) · 1.11 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
33
34
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='django-teamwork',
version='0.2.0',
description='Django app that offers an authorization backend with support for per-object permissions based on combinations of Teams, Roles, and Policies.',
long_description=open('README.rst').read(),
author='Les Orchard',
author_email='[email protected]',
url='http://github.com/lmorchard/django-teamwork',
license='BSD',
packages=find_packages(exclude=['teamwork_example*']),
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
'django>=1.4',
],
tests_require=[
'nose',
'django-nose',
'pyquery',
'feedparser',
],
test_suite='manage.nose_collector',
)