#!/usr/bin/env python
#!/usr/bin/env python
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
### BEGIN LICENSE
# This file is in the public domain
### END LICENSE
###################### DO NOT TOUCH THIS (HEAD TO THE SECOND PART) ######################
import os
import sys
from setuptools import setup
setup (
name='hello-unity',
version='0.4',
description='Unity technology showcase',
author='Michael Hall',
author_email='mhall119@ubuntu.com',
license='GPLv3',
url='http://launchpad.net/hello-unity',
packages=['hello_unity'],
scripts=['hello-unity'],
package_data={
'': [
'hello-unity.desktop',
'hello-unity.svg',
'hello-unity-attention.svg',
'hello-unity-mono-dark.svg',
],
},
)