blob: fcd23cbd1561d1d3e7cf65f434457cff4d9f7656 (
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.2",
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
)
|