#!/usr/bin/env python3

from setuptools import setup
import imp

# Load the debtags script as a module, to access the VERSION variable
debtags = imp.load_source("debtags", "debtags")

setup(name='debtags',
      description="Debian Package Tags support tools",
      author="Enrico Zini",
      author_email="enrico@debian.org",
      url="http://debtags.debian.net",
      #install_requires=["debian", "apt"],
      license="GPL",
      version=debtags.VERSION,
      scripts=["debtags"],
      #test_suite="test",
)
