~ubuntu-branches/ubuntu/maverick/python-debian/maverick

« back to all changes in this revision

Viewing changes to setup.py.in

  • Committer: Bazaar Package Importer
  • Author(s): Stefano Zacchiroli, Stefano Zacchiroli, Filippo Giunchedi, Muharem Hrnjadovic
  • Date: 2009-07-18 21:26:40 UTC
  • mfrom: (3.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090718212640-4u2ek50x0og0dekw
Tags: 0.1.14
[ Stefano Zacchiroli ]
* setup.py.in: switch to setuptools, which are able to generate eggs;
  add matching build-dep on python-setuptools (Closes: #525694)
* examples/deb822/: add new example render-dctrl, to render packages in
  a dctrl-tools pipeline (using Markdown as long description syntax)
* deb822: use __new__ to sub-class strings for case-insensitiveness;
  former approach is deprecated with python 2.6.
  Thanks to Loïc Minier for the patch. (Closes: #524061)

[ Filippo Giunchedi ]
* deb822: parse also Binary as PkgRelation, thus add .binary attribute

[ Muharem Hrnjadovic ]
* fixed changelog parser exception raised when dealing with empty
  changelog files (LP: #400589).

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
# along with this program; if not, write to the Free Software
17
17
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18
18
 
19
 
from distutils.core import setup
 
19
from setuptools import setup
20
20
 
21
21
setup(name='python-debian',
22
22
      version='__CHANGELOG_VERSION__',
23
23
      description='Debian package related modules',
24
 
      url='http://packages.qa.debian.org/p/python-debian.html',
 
24
      url='http://packages.debian.org/sid/python-debian',
25
25
      packages=['debian_bundle'],
26
26
      py_modules=['deb822'],
 
27
      maintainer='Debian python-debian Maintainers',
 
28
      maintainer_email='pkg-python-debian-maint@lists.alioth.debian.org',
27
29
     )