comparison 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
comparison
equal deleted inserted replaced
65:91ffa1de398c 66:358fd5c84270
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'])