Ubuntu Pastebin

Paste from mhall at Mon, 18 Apr 2016 13:47:40 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/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',
            ],
    },
)
Download as text