Skip to content
Snippets Groups Projects
setup.py 1.38 KiB
Newer Older
Olivier Le Brouster's avatar
Olivier Le Brouster committed
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from setuptools import setup, find_packages
import os
import newsbox


CLASSIFIERS = [
    'Development Status :: 5 - Production/Stable',
    'Environment :: Web Environment',
    'Framework :: Django',
    'Intended Audience :: Developers',
    'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
Olivier Le Brouster's avatar
Olivier Le Brouster committed
    'Operating System :: OS Independent',
    'Programming Language :: Python',
    'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
    'Topic :: Software Development',
    'Topic :: Software Development :: Libraries :: Application Frameworks',
    "Programming Language :: Python :: 2.6",
    "Programming Language :: Python :: 2.7",
    "Programming Language :: Python :: 3.3",
]

setup(
    author="Dylann Cordel",
    author_email="d.cordel@webu.coop",
    name='django-newsbox',
    version=newsbox.__version__,
    description='A Django and Django CMS APP providing news support',
    long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(),
    url='https://dev.webu.coop/webu/django-newsbox',
    license='BSD License',
    platforms=['OS Independent'],
    classifiers=CLASSIFIERS,
    install_requires=[
        'Django>=1.6,<1.7',
    ],
    packages=find_packages(exclude=["project", "project.*"]),
    include_package_data=True,
    zip_safe=False,
)