aboutsummaryrefslogtreecommitdiff
blob: 6d2d7309376276710b5f99d8abe9c6017f197431 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages

setup(name = "tatt",
      version = "0.10",
      packages = find_packages(),
      scripts = ['scripts/tatt'],
      package_data = {
          'tatt': ['dot-tatt-spec']
          },

      install_requires = ['configobj>=4.6'],

      # metadata for upload to PyPI
      author = "Thomas Kahle",
      author_email = "tom111@gmx.de",
      description = "tatt is an arch testing tool",
      license = "GPL-2",
      keywords = "gentoo arch testing",
      url = "http://github.com/gentoo/tatt",   # project home page
      )