Skip to content

Commit

Permalink
Added branch 1.1 for Products.Poi.
Browse files Browse the repository at this point in the history
Will contain collective/Poi as svn:external.
Meant for creating eggs.
Let's see if this works nicely. :-)

svn path=/Products.Poi/branches/1.1/; revision=69598
  • Loading branch information
mauritsvanrees committed Aug 6, 2008
0 parents commit 9aed474
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Products/__init__.py
@@ -0,0 +1,6 @@
# See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
try:
__import__('pkg_resources').declare_namespace(__name__)
except ImportError:
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
47 changes: 47 additions & 0 deletions setup.py
@@ -0,0 +1,47 @@
from setuptools import setup, find_packages
import os

versionfile = open(os.path.join('Products', 'Poi', 'version.txt'))
version = versionfile.read().strip()
versionfile.close()

readmefile = open(os.path.join('Products', 'Poi', 'README.txt'))
readme = readmefile.read().strip()
readmefile.close()

historyfile = open(os.path.join('Products', 'Poi', 'HISTORY.txt'))
history = historyfile.read().strip()
historyfile.close()

long_description = readme + "\n\n" + history

setup(name='Products.Poi',
version=version,
description="Poi: A friendly issue tracker",
long_description=long_description,
# Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Framework :: Plone",
"Framework :: Zope2",
"Framework :: Zope3",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='',
author='Martin Aspeli',
author_email='plone-users@lists.sourceforge.net',
url='http://plone.org/products/poi',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['Products'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'Products.AddRemoveWidget',
'Products.DataGridField',
],
entry_points="""
# -*- Entry points: -*-
""",
)

0 comments on commit 9aed474

Please sign in to comment.