aboutsummaryrefslogtreecommitdiff
blob: bc84512cbbfb4f9d75a017dd73f62ad9203bb7a4 (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.11",
      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
      )