-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
45 lines (40 loc) · 1.38 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
__author__ = 'Zhou Guangwen'
import os
from setuptools import setup, find_packages
PKG_NAME = 'rssplugin'
VERSION = __import__(PKG_NAME).__version__
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="django-rss-plugin",
version=VERSION,
author="Guangwen Zhou",
author_email="zgwmike@hotmail.com",
description="A Django CMS plugin to show a list of feeds.",
license="BSD",
keywords="django cms plugin django-rss-plugin",
url="http://github.com/zgwmike/django-rss-plugin",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Video :: Display',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
install_requires=[
'feedparser',
'Django >= 1.4',
'django-cms >= 2.3'],
long_description=read("README.rst") + read("CHANGES.rst"),
packages = find_packages(),
include_package_data=True,
zip_safe=False,
)