-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
48 lines (44 loc) · 1.58 KB
/
setup.py
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
48
# coding=utf-8
"""Setup script to install PyMediaRSS2Gen."""
import sys
from setuptools import setup
install_requires = ['PyRSS2Gen']
if sys.version_info < (2, 7):
install_requires.append('ordereddict')
try:
long_description = \
open('README.rst').read() + '\n\n' + \
open('CHANGELOG.rst').read() + '\n\n' + \
open('AUTHORS.rst').read()
except (OSError, IOError):
long_description = ''
setup(
name='PyMediaRSS2Gen',
version='0.1.1',
description='A Python library for generating Media RSS 2.0 feeds.',
long_description=long_description,
author='Dirk Weise',
author_email='[email protected]',
license='MIT',
url='https://github.com/wedi/PyMediaRSS2Gen',
download_url='https://github.com/wedi/PyMediaRSS2Gen/archive/v0.1.1.tar.gz', # noqa
keywords=['RSS', 'Feed'],
install_requires=install_requires,
py_modules=['PyMediaRSS2Gen'],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Markup :: XML",
],
)