pyreadline: added doc directory to setup scripts

This commit is contained in:
jstenar
2006-01-25 20:39:25 +00:00
parent a6887ae374
commit e295833165
3 changed files with 12 additions and 2 deletions
+4
View File
@@ -1,3 +1,7 @@
2006-01-25 Jörgen Stenarson <jorgen.stenarson -at- bostream.nu>
* Added doc directory to setup scripts
2006-01-25 Jörgen Stenarson <jorgen.stenarson -at- bostream.nu>
* Added copyright notices to all files
+4 -1
View File
@@ -6,7 +6,7 @@
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING, distributed as part of this software.
#*****************************************************************************
import glob
from setuptools import setup,find_packages
execfile('pyreadline/release.py')
@@ -22,5 +22,8 @@ setup(name=name,
platforms = platforms,
keywords = keywords,
packages = ['pyreadline'],
data_files = [('doc', glob.glob("doc/*")),
],
zip_safe = False,
)
+4 -1
View File
@@ -8,9 +8,10 @@
# the file COPYING, distributed as part of this software.
#*****************************************************************************
import glob
from distutils.core import setup
execfile('pyreadline/release.py')
setup(name=name,
version = version,
description = description,
@@ -23,5 +24,7 @@ setup(name=name,
platforms = platforms,
keywords = keywords,
packages = ['pyreadline'],
data_files = [('share/doc/pyreadline', glob.glob("doc/*")),
]
)