forked from collective/Products.feedfeeder
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
366b9b3
commit 2f0b1c8
Showing
1 changed file
with
43 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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='[email protected]', | ||
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='[email protected]', | ||
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 | ||
""", | ||
) |