Skip to content
This repository has been archived by the owner on Sep 13, 2024. It is now read-only.

Commit

Permalink
* version 1.1
Browse files Browse the repository at this point in the history
git-svn-id: http://zenpacks.zenoss.org/svn/zenpacks@740 db08cffe-75b9-45d1-af1a-46ad9ef135f6
  • Loading branch information
epuzanov committed Jun 13, 2010
1 parent d0f7938 commit 16e21d5
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions ZenPacks.community.LinMon_WBEM/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
# or saved. Do not modify them directly here.
# NB: PACKAGES is deprecated
NAME = "ZenPacks.community.LinMon_WBEM"
VERSION = "1.0"
VERSION = "1.1"
AUTHOR = "Egor Puzanov"
LICENSE = ""
NAMESPACE_PACKAGES = ['ZenPacks', 'ZenPacks.community']
PACKAGES = ['ZenPacks', 'ZenPacks.community', 'ZenPacks.community.LinMon_WBEM']
INSTALL_REQUIRES = ['ZenPacks.community.WBEMDataSource>=1.0']
COMPAT_ZENOSS_VERS = ">=2.3"
INSTALL_REQUIRES = ['ZenPacks.community.WBEMDataSource>=2.5']
COMPAT_ZENOSS_VERS = ">=2.5"
PREV_ZENPACK_NAME = ""
# STOP_REPLACEMENTS
################################
Expand All @@ -25,32 +25,30 @@
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,

# The MANIFEST.in file is the recommended way of including additional files
# in your ZenPack. package_data is another.
package_data = {
'':['../COPYRIGHT.txt','../LICENSE.txt']
},
#package_data = {}

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

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

0 comments on commit 16e21d5

Please sign in to comment.