-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·47 lines (43 loc) · 1.73 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·47 lines (43 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from distutils.core import setup
# patch distutils if it can't cope with the "classifiers" or "download_url"
# keywords (prior to python 2.3.0).
from distutils.dist import DistributionMetadata
if not hasattr(DistributionMetadata, 'classifiers'):
DistributionMetadata.classifiers = None
if not hasattr(DistributionMetadata, 'download_url'):
DistributionMetadata.download_url = None
setup(
name = 'feedparser',
version = '4.1',
description = 'Universal feed parser, handles RSS 0.9x, RSS 1.0, '
'RSS 2.0, CDF, Atom 0.3, and Atom 1.0 feeds',
long_description = """\
Universal feed parser
---------------------
Handles RSS 0.9x, RSS 1.0, RSS 2.0, CDF, Atom 0.3, Atom 1.0 feeds
Required: Python 2.1 or later
Recommended: Python 2.3 or later
Recommended: libxml2 <http://xmlsoft.org/python.html>
""",
author='Mark Pilgrim',
author_email = 'mark@diveintomark.org',
url = 'http://feedparser.org/',
download_url = 'http://sourceforge.net/projects/feedparser/',
license = "BSD",
platforms = ['POSIX', 'Windows'],
keywords = ['feed parser', 'feeds', 'rss', 'atom', 'cdf'],
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Other Environment",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Communications",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Other/Nonlisted Topic",
"Topic :: Software Development :: Libraries :: Python Modules",
],
py_modules = ['feedparser',]
)