~azzar1/unity/fix-trash-li-blocking

« back to all changes in this revision

Viewing changes to tests/autopilot/setup.py

  • Committer: Daniel van Vugt
  • Date: 2012-03-14 06:24:18 UTC
  • mfrom: (2108 unity)
  • mto: This revision was merged to the branch mainline in revision 2146.
  • Revision ID: daniel.van.vugt@canonical.com-20120314062418-nprucpbr0m7qky5e
MergedĀ latestĀ lp:unity

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/python
2
2
 
3
3
from distutils.core import setup
 
4
from setuptools import find_packages
4
5
 
5
6
setup(
6
7
    name='autopilot',
10
11
    author_email='alex.launi@canonical.com',
11
12
    url='https://launchpad.net/unity',
12
13
    license='GPLv3',
13
 
    packages=['autopilot', 'autopilot.emulators', 'autopilot.tests'],
14
 
    scripts=['bin/run_autopilot'],
 
14
    packages=find_packages(),
15
15
)