Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
django-branding / setup.py
Size: Mime:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from setuptools import setup
import os


BASE_DIR = os.path.join(os.path.dirname(__file__))


with open(os.path.join(BASE_DIR, 'README.md')) as f:
    README = f.read()


# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))


setup(
    name='django-branding',
    version='0.1.9',
    description="Adds brand and policy models to provider-network-based projects",
    author='Robert Kolner',
    author_email='robert@zeppelin.no',
    long_description=README,
    packages=['branding'],
    test_suite="tox",
    include_package_data=True,
    install_requires=[
        'django>=1.8,<1.10',
        'provider-network>=0.6.6',
        'six',
    ],
    extras_require={
        'test': ['tox']
    },
    classifiers=[
        'Development Status :: 5 - Production/Stable',
        'Environment :: Web Environment',
        'Framework :: Django',
        'Intended Audience :: Developers',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Programming Language :: Python :: 2',
        'Programming Language :: Python :: 3',
        'Topic :: Internet :: WWW/HTTP',
        'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
    ],
)