-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
50 lines (45 loc) · 1.65 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import os
from setuptools import setup, find_packages
try:
readme = open('README.rst', encoding='utf-8').read()
except:
readme = open('README.rst').read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
install_requires = [
'mezzanine >= 1.4.0',
]
from mezzanine_page_auth import __version__ as version
setup(
name='mezzanine-page-auth',
version=version,
author='Simone Dalla',
author_email='simodalla@gmail.com',
description='A Mezzanine module for add group-level permission to pages.',
long_description=readme,
license='BSD License',
url='https://github.com/simodalla/mezzanine_page_auth/',
include_package_data=True,
packages=find_packages(),
install_requires=install_requires,
test_suite='runtests.runtests',
tests_require=['mock', 'pep8', 'pyflakes', 'factory_boy'],
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 :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)