Correcting a line in the setup.py file so it takes CHANGE and LICENCE file again, and adds a 'pass' statement in unit testing so it succeeded :p

This commit is contained in:
Fred Pauchet 2011-09-27 22:36:14 +02:00
parent 9d0afafa80
commit 96efba1d54
2 changed files with 5 additions and 5 deletions

View File

@ -67,10 +67,10 @@ class TestPigeonHoleFunctions(unittest.TestCase):
def test_findFolder(self):
"""Try to move a file to a specific location"""
pass
if __name__ == '__main__':
unittest.main()
unittest.main()

View File

@ -8,8 +8,8 @@ setup {
packages=['pigeonhole','pigeonhole.test'],
scripts=[],
url='',
licence='LICENCE.txt',
licence='LICENCE',
description='',
long_description=long_description=open('README.txt').read(),
long_description=long_description=open('README').read(),
install_require=[],
}
}