Codebase list django-guardian / upstream/1.3.2 setup.py
upstream/1.3.2

Tree @upstream/1.3.2 (Download .tar.gz)

setup.py @upstream/1.3.2raw · history · blame

import os
import sys
from setuptools import setup, find_packages
from extras import RunFlakesCommand

guardian = __import__('guardian')
readme_file = os.path.join(os.path.dirname(__file__), 'README.rst')
try:
    long_description = open(readme_file).read()
except IOError as err:
    sys.stderr.write("[ERROR] Cannot find file specified as "
        "``long_description`` (%s)\n" % readme_file)
    sys.exit(1)

tests_require = ['mock']

extra_kwargs = {}
if sys.version_info >= (3,):
    extra_kwargs = {'use_2to3': True}
elif sys.version_info < (2, 7):
    tests_require.append('unittest2')

setup(
    name = 'django-guardian',
    version = guardian.get_version(),
    url = 'http://github.com/lukaszb/django-guardian',
    author = 'Lukasz Balcerzak',
    author_email = 'lukaszbalcerzak@gmail.com',
    download_url='https://github.com/lukaszb/django-guardian/tags',
    description = guardian.__doc__.strip(),
    long_description = long_description,
    zip_safe = False,
    packages = find_packages(),
    include_package_data = True,
    license = 'BSD',
    install_requires = [
        'Django',
        'six',
    ],
    tests_require=tests_require,
    classifiers = ['Development Status :: 5 - Production/Stable',
                   'Environment :: Web Environment',
                   'Framework :: Django',
                   'Intended Audience :: Developers',
                   'License :: OSI Approved :: BSD License',
                   'Operating System :: OS Independent',
                   'Programming Language :: Python',
                   'Topic :: Security',
                   'Programming Language :: Python :: 2.7',
                   'Programming Language :: Python :: 3.3',
                   'Programming Language :: Python :: 3.4',
                   'Programming Language :: Python :: 3.5',
    ],
    test_suite='tests.main',
    cmdclass={'flakes': RunFlakesCommand},
    **extra_kwargs
)