diff --git a/setup.cfg b/setup.cfg index 01bb954..fc645da 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,3 +1,3 @@ [egg_info] -tag_build = dev -tag_svn_revision = true +tag_build = +tag_svn_revision = false diff --git a/setup.py b/setup.py index 32db60a..4d3df40 100644 --- a/setup.py +++ b/setup.py @@ -6,17 +6,19 @@ setup(name='Products.Gloworm', version=version, description="", - long_description=open("README.txt").read() + "\n" + - open(os.path.join("docs", "HISTORY.txt")).read(), + long_description=open("Products/Gloworm/HISTORY.txt").read() + "\n\n" + + open("Products/Gloworm/README.txt").read(), # 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='', - author_email='', - url='', + author='WebLion Group, Penn State University', + author_email='support@weblion.psu.edu', + url='https://weblion.psu.edu/svn/weblion/weblion/plone.app.gloworm/', license='GPL', packages=find_packages(exclude=['ez_setup']), namespace_packages=['Products'], @@ -25,8 +27,10 @@ install_requires=[ 'setuptools', # -*- Extra requirements: -*- + 'plone.app.customerize>=1.1.2', ], entry_points=""" # -*- Entry points: -*- """, ) +