| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- from setuptools import setup
- import sys
- extra = {}
- if sys.version_info >= (3, ):
- extra['use_2to3'] = True
- setup(
- name = 'feedparser',
- version = '5.2.1',
- description = 'Universal feed parser, handles RSS 0.9x, RSS 1.0, '
- 'RSS 2.0, CDF, Atom 0.3, and Atom 1.0 feeds',
- author = 'Kurt McKee',
- author_email = 'contactme@kurtmckee.org',
- url = 'https://github.com/kurtmckee/feedparser',
- download_url = 'https://pypi.python.org/pypi/feedparser',
- platforms = ['POSIX', 'Windows'],
- package_dir = {'': 'feedparser'},
- py_modules = ['feedparser'],
- keywords = ['atom', 'cdf', 'feed', 'parser', 'rdf', 'rss'],
- classifiers = [
- 'Development Status :: 5 - Production/Stable',
- 'Intended Audience :: Developers',
- 'License :: OSI Approved',
- 'Operating System :: OS Independent',
- 'Programming Language :: Python',
- 'Programming Language :: Python :: 2',
- 'Programming Language :: Python :: 2.4',
- 'Programming Language :: Python :: 2.5',
- 'Programming Language :: Python :: 2.6',
- 'Programming Language :: Python :: 2.7',
- 'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.0',
- 'Programming Language :: Python :: 3.1',
- 'Programming Language :: Python :: 3.2',
- 'Programming Language :: Python :: 3.3',
- 'Programming Language :: Python :: 3.4',
- 'Topic :: Software Development :: Libraries :: Python Modules',
- 'Topic :: Text Processing :: Markup :: XML',
- ],
- **extra
- )
|