distrib bug..
1.1 --- a/MANIFEST.in Sun Mar 28 23:20:44 2010 +0200
1.2 +++ b/MANIFEST.in Mon Mar 29 00:09:55 2010 +0200
1.3 @@ -1,3 +1,4 @@
1.4 include README.txt
1.5 include CHANGES.txt
1.6 +include setup.py
1.7
2.1 --- a/setup.py Sun Mar 28 23:20:44 2010 +0200
2.2 +++ b/setup.py Mon Mar 29 00:09:55 2010 +0200
2.3 @@ -3,10 +3,14 @@
2.4
2.5 version = '0.7'
2.6
2.7 +long_description = ''
2.8 +if os.path.isfile('README.txt'):
2.9 + long_description=open('README.txt').read() + open('CHANGES.txt').read()
2.10 +
2.11 setup(name='freeboxtv',
2.12 version=version,
2.13 description="VLC launcher for Freebox TV",
2.14 - long_description=open('README.txt').read() + open('CHANGES.txt').read(),
2.15 + long_description=long_description,
2.16 classifiers=[
2.17 'Environment :: Console',
2.18 'License :: OSI Approved',
2.19 @@ -16,7 +20,7 @@
2.20 keywords='freebox',
2.21 author='Gael Pasgrimaud',
2.22 author_email='gael@gawel.org',
2.23 - url='http://www.gawel.org/docs/freeboxtv',
2.24 + url='http://www.gawel.org/docs/dist',
2.25 license='GPL',
2.26 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
2.27 include_package_data=True,