summaryrefslogtreecommitdiff
path: root/setup.py
blob: b4d12f817cc7fba16fb00e62dd8fb53a5df3fd2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/python
# -*- coding: utf-8 -*-

from distutils.core import setup, Extension
from portato.constants import VERSION, DATA_DIR

setup(name="Portato",
		version=VERSION,
		author="René 'Necoro' Neumann",
		license="GPLv2",
		author_email="necoro@necoro.net",
		packages=["portato", "portato.gui", "portato.backend", "portato.gui.gtk"],
		data_files=[(DATA_DIR, ["portato/gui/gtk/glade/portato.glade"])]
		)