Skip to content

Commit

Permalink
Update package metadata.
Browse files Browse the repository at this point in the history
  • Loading branch information
jone committed Nov 12, 2012
1 parent 7a5a299 commit 28ee2a4
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions setup.py
Expand Up @@ -11,28 +11,33 @@
setup(name='ftw.tooltip', setup(name='ftw.tooltip',
version=version, version=version,
description="Apply tooltips dynamically", description="Apply tooltips dynamically",
long_description=open("README.rst").read() + "\n" + long_description=open("README.rst").read() + "\n" + \
open(os.path.join("docs", "HISTORY.txt")).read(), open(os.path.join("docs", "HISTORY.txt")).read(),

# Get more strings from # Get more strings from
# http://www.python.org/pypi?%3Aaction=list_classifiers # http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[ classifiers=[
"Programming Language :: Python", "Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Libraries :: Python Modules",
], ],

keywords='', keywords='',
author='4teamwork GmbH', author='4teamwork GmbH',
author_email='mailto:info@4teamwork.ch', author_email='mailto:info@4teamwork.ch',
url='http://plone.org/products/ftw.tooltip/', url='https://github.com/4teamwork/ftw.tooltip',
license='GPL2', license='GPL2',

packages=find_packages(exclude=['ez_setup']), packages=find_packages(exclude=['ez_setup']),
namespace_packages=['ftw', ], namespace_packages=['ftw', ],
include_package_data=True, include_package_data=True,
zip_safe=False, zip_safe=False,

install_requires=[
'setuptools',
],
tests_require=tests_require, tests_require=tests_require,
extras_require=dict(tests=tests_require), extras_require=dict(tests=tests_require),
install_requires=[
'setuptools',
],
entry_points=""" entry_points="""
# -*- Entry points: -*- # -*- Entry points: -*-
[z3c.autoinclude.plugin] [z3c.autoinclude.plugin]
Expand Down

0 comments on commit 28ee2a4

Please sign in to comment.