add a script to run tests with nose plugins loaded
author |
Idan Kamara <idankk86@gmail.com> |
date |
Sat, 15 Oct 2011 20:09:59 +0200 |
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'])
|