1 2 3 4 5 6 7 8 9 10 11 12 |
#!/usr/bin/env python from distutils.core import setup setup(name='Xpresser', version='1.0', description='Python library to script Graphic User Interfaces.', author='Gustavo Niemeyer', author_email='gustavo.niemeyer@canonical.com', url='https://edge.launchpad.net/xpresser', packages=['xpresser'], ) |