Skip to content

Commit

Permalink
Reindented setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mauritsvanrees committed Feb 22, 2016
1 parent 366b9b3 commit 2f0b1c8
Showing 1 changed file with 43 additions and 42 deletions.
85 changes: 43 additions & 42 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,45 +3,46 @@
readme = open("README.rst").read().strip()
history = open("CHANGES.rst").read().strip()

setup(name='Products.feedfeeder',
version='2.9.dev0',
description="Turn external feed entries into content items",
long_description= readme + "\n\n" + history,
# Get more strings from
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Framework :: Plone",
"Framework :: Plone :: 4.0",
"Framework :: Plone :: 4.1",
"Framework :: Plone :: 4.2",
"Framework :: Plone :: 4.3",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='feed rss atom',
author='Zest Software',
author_email='m.van.rees@zestsoftware.nl',
url='https://github.com/collective/Products.feedfeeder',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['Products'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'feedparser',
'beautifulsoup4',
],
extras_require = {
'test': [
'Products.PloneTestCase',
],
},
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)
setup(
name='Products.feedfeeder',
version='2.9.dev0',
description="Turn external feed entries into content items",
long_description=readme + "\n\n" + history,
# Get more strings from
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Framework :: Plone",
"Framework :: Plone :: 4.0",
"Framework :: Plone :: 4.1",
"Framework :: Plone :: 4.2",
"Framework :: Plone :: 4.3",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='feed rss atom',
author='Zest Software',
author_email='m.van.rees@zestsoftware.nl',
url='https://github.com/collective/Products.feedfeeder',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['Products'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'feedparser',
'beautifulsoup4',
],
extras_require={
'test': [
'Products.PloneTestCase',
],
},
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)

0 comments on commit 2f0b1c8

Please sign in to comment.