~ubuntu-branches/ubuntu/wily/django-threaded-multihost/wily

« back to all changes in this revision

Viewing changes to .pc/fix_for_networkbuild.patch/setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Deepak Tripathi
  • Date: 2010-04-13 09:35:21 UTC
  • Revision ID: james.westby@ubuntu.com-20100413093521-q9re87s5rxh2milp
Tags: 1.3.2-2
* Changing to quilt 3.0.
* Added debian/source/format
* Stop downloading at build time (Closes: #573685)
  + Added quilt for changing setup.py
* Change cdbs to debhelper >=7

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import ez_setup
 
2
ez_setup.use_setuptools()
 
3
from setuptools import setup, find_packages
 
4
 
 
5
version = __import__('threaded_multihost').__version__
 
6
 
 
7
setup(
 
8
    name = 'django-threaded-multihost',
 
9
    version = version,
 
10
    description = "Django Threaded Multihost",
 
11
    long_description = """django-threaded multihost provides support utilities to
 
12
    enable easy multi-site awareness in Django apps.""",
 
13
    author = 'Bruce Kroeze',
 
14
    author_email = 'brucek@solidsitesolutions.com',
 
15
    url = 'http://getbanjo.com/threaded-multihost/',
 
16
    license = 'New BSD License',
 
17
    platforms = ['any'],
 
18
    classifiers = ['Development Status :: 4 - Beta',
 
19
                   'Environment :: Web Environment',
 
20
                   'Framework :: Django',
 
21
                   'Intended Audience :: Developers',
 
22
                   'License :: OSI Approved :: BSD License',
 
23
                   'Operating System :: OS Independent',
 
24
                   'Programming Language :: Python',
 
25
                   'Topic :: Utilities'],    
 
26
    packages = ['threaded_multihost'],
 
27
    #package_dir = {'':'threaded_multihost'},
 
28
    include_package_data = False,
 
29
    setup_requires = ["setuptools_hg"],
 
30
)