~ubuntu-branches/ubuntu/trusty/beaker/trusty

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Oleksandr Moskalenko
  • Date: 2008-07-01 12:22:13 UTC
  • mfrom: (1.1.6 upstream) (2.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080701122213-xo36cekvbfb08rnt
Tags: 0.9.5-1
* New upstream release.
* debian/rules: Do not put google.py into python2.'s dirs (Closes: #479484).
* debian/control:
  - Updated Standarts-Version to 3.8.0 per lintian warning.
  - Changed Build-Depends python-setuptools from 0.6b3-1 to 0.6b3 per
    lintian warning.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
from setuptools import setup, find_packages
2
2
 
3
 
version = '0.9.4'
 
3
version = '0.9.5'
4
4
 
5
5
setup(name='Beaker',
6
6
      version=version,
115
115
      'Development Status :: 5 - Production/Stable',
116
116
      'Environment :: Web Environment',
117
117
      'Intended Audience :: Developers',
118
 
      'License :: OSI Approved :: MIT License',
 
118
      'License :: OSI Approved :: BSD License',
119
119
      'Programming Language :: Python',
120
120
      'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
121
121
      ],
123
123
      author='Ben Bangart, Mike Bayer, Philip Jenvey',
124
124
      author_email='ben@groovie.org, pjenvey@groovie.org',
125
125
      url='http://beaker.groovie.org',
126
 
      license='MIT',
 
126
      license='BSD',
127
127
      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
128
128
      zip_safe=False,
129
129
      install_requires=[],