Skip to content

Commit

Permalink
Added LICENSE.txt and COPYRIGHT.txt to ZenPacks
Browse files Browse the repository at this point in the history
git-svn-id: http://zenpacks.zenoss.org/svn/zenpacks@80 db08cffe-75b9-45d1-af1a-46ad9ef135f6
  • Loading branch information
Matt Ray committed Jan 7, 2009
1 parent e0d3b25 commit d451ccf
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,31 +25,31 @@
version = VERSION,
author = AUTHOR,
license = LICENSE,

# This is the version spec which indicates what versions of Zenoss
# this ZenPack is compatible with
compatZenossVers = COMPAT_ZENOSS_VERS,

# previousZenPackName is a facility for telling Zenoss that the name
# of this ZenPack has changed. If no ZenPack with the current name is
# installed then a zenpack of this name if installed will be upgraded.
prevZenPackName = PREV_ZENPACK_NAME,
prevZenPackName = PREV_ZENPACK_NAME,

# Indicate to setuptools which namespace packages the zenpack
# participates in
namespace_packages = NAMESPACE_PACKAGES,

# Tell setuptools what packages this zenpack provides.
packages = find_packages(),

# Tell setuptools to figure out for itself which files to include
# in the binary egg when it is built.
include_package_data = True,

# Tell setuptools what non-python files should also be included
# with the binary egg.
package_data = {
},
package_data = { '':['../COPYRIGHT.txt','../LICENSE.txt']
},

# Indicate dependencies on other python modules or ZenPacks. This line
# is modified by zenoss when the ZenPack edit page is submitted. Zenoss
Expand All @@ -66,5 +66,5 @@
},

# All ZenPack eggs must be installed in unzipped form.
zip_safe = False,
zip_safe = False,
)

0 comments on commit d451ccf

Please sign in to comment.