Mercurial > public > mercurial-scm > python-hglib
annotate setup.py @ 66:358fd5c84270
add a setup.py
author | Idan Kamara <idankk86@gmail.com> |
---|---|
date | Tue, 23 Aug 2011 21:57:40 +0300 |
parents | |
children | 009e7858a93b |
rev | line source |
---|---|
66 | 1 import os |
2 from distutils.core import setup | |
3 | |
4 setup( | |
5 name='python-hglib', | |
6 version='0.1', | |
7 author='Idan Kamara', | |
8 author_email='idankk86@gmail.com', | |
9 url='http://selenic.com/repo/python-hglib', | |
10 description='Mercurial Python library', | |
11 long_description=open(os.path.join(os.path.dirname(__file__), 'README')).read(), | |
12 license='MIT', | |
13 packages=['hglib']) |