-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (35 loc) · 1.26 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
import os
from setuptools import setup, find_packages
PKG_NAME = 'cmsmedium'
VERSION = __import__(PKG_NAME).__version__
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name=PKG_NAME,
version=VERSION,
author="Bruno Clermont",
author_email="[email protected]",
description="A Django CMS plugin to show posts of Medium.",
license="BSD",
keywords="django cms plugin medium",
url="http://github.com/bclermont/" + PKG_NAME,
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',
'Topic :: Multimedia :: Video :: Display',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
install_requires=['feedparser', 'python-dateutil', 'Django >= 1.4', 'django-cms >= 3.5.3'],
long_description=read("README.md"),
packages=find_packages(),
include_package_data=True,
zip_safe=False,
)