~3v1n0/autopilot/badwindow-errors-protect

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Thomi Richards
  • Date: 2012-05-06 22:45:27 UTC
  • Revision ID: thomi.richards@canonical.com-20120506224527-xh6wixqiw0rarkmh
Imported code from unity.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
 
 
3
from distutils.core import setup
 
4
from setuptools import find_packages
 
5
 
 
6
setup(
 
7
    name='autopilot',
 
8
    version='1.0',
 
9
    description='Unity test driver automation script',
 
10
    author='Alex Launi',
 
11
    author_email='alex.launi@canonical.com',
 
12
    url='https://launchpad.net/unity',
 
13
    license='GPLv3',
 
14
    packages=find_packages(),
 
15
)