Support for the "install_headers" command: distribution option 'headers'

and method 'has_headers()'.
This commit is contained in:
Greg Ward 2000-05-27 01:36:14 +00:00
parent 2d238c56a6
commit 51def7d667
1 changed files with 4 additions and 0 deletions

View File

@ -146,6 +146,7 @@ class Distribution:
self.package_dir = None
self.py_modules = None
self.libraries = None
self.headers = None
self.ext_modules = None
self.ext_package = None
self.include_dirs = None
@ -699,6 +700,9 @@ class Distribution:
def has_modules (self):
return self.has_pure_modules() or self.has_ext_modules()
def has_headers (self):
return self.headers and len(self.headers) > 0
def has_scripts (self):
return self.scripts and len(self.scripts) > 0