File: setup.py

package info (click to toggle)
django-threaded-multihost 1.3.2-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 180 kB
  • ctags: 114
  • sloc: python: 494; makefile: 8
file content (28 lines) | stat: -rw-r--r-- 1,126 bytes parent folder | download
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
from setuptools import setup, find_packages

version = __import__('threaded_multihost').__version__

setup(
    name = 'django-threaded-multihost',
    version = version,
    description = "Django Threaded Multihost",
    long_description = """django-threaded multihost provides support utilities to
    enable easy multi-site awareness in Django apps.""",
    author = 'Bruce Kroeze',
    author_email = 'brucek@solidsitesolutions.com',
    url = 'http://getbanjo.com/threaded-multihost/',
    license = 'New BSD License',
    platforms = ['any'],
    classifiers = ['Development Status :: 4 - Beta',
                   'Environment :: Web Environment',
                   'Framework :: Django',
                   'Intended Audience :: Developers',
                   'License :: OSI Approved :: BSD License',
                   'Operating System :: OS Independent',
                   'Programming Language :: Python',
                   'Topic :: Utilities'],    
    packages = ['threaded_multihost'],
    #package_dir = {'':'threaded_multihost'},
    include_package_data = False,
    setup_requires = ["setuptools"],
)