File: setup.py

package info (click to toggle)
python-fastimport 0.9.2-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 256 kB
  • sloc: python: 1,941; makefile: 8; sh: 1
file content (14 lines) | stat: -rwxr-xr-x 544 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python
from distutils.core import setup

version = "0.9.2"

setup(name="fastimport",
      description="VCS fastimport/fastexport parser",
      version=version,
      author="Canonical Ltd",
      author_email="bazaar@lists.canonical.com",
      license="GNU GPL v2 or later",
      url="https://launchpad.net/python-fastimport",
      download_url='http://launchpad.net/python-fastimport/trunk/%s/+download/fastimport-%s.tar.gz' % (version, version),
      packages=['fastimport', 'fastimport.tests', 'fastimport.processors'])