examples: add simple stat-gathering example
author |
Matt Mackall <mpm@selenic.com> |
date |
Wed, 09 Nov 2011 14:07:29 -0600 |
parents |
358fd5c84270 |
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'])
|