Skip to content

Instantly share code, notes, and snippets.

@zbraniecki
Created July 2, 2015 09:52
Show Gist options
  • Save zbraniecki/a824543ca842d8175817 to your computer and use it in GitHub Desktop.
Save zbraniecki/a824543ca842d8175817 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
from distutils.core import setup
import os
setup(name='l20n',
version='1.0',
description='Python L20n library',
author='Mozilla',
author_email='team@mozilla.com',
url='https://github.com/l20n/python-l20n',
packages=['l20n.format.l20n'],
package_dir = {
'l20n': os.path.join('lib'),
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment