forked from jeffbr13/django-podcast-feed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (29 loc) · 893 Bytes
/
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
from setuptools import setup, find_packages
from codecs import open
VERSION = '0.0.3'
NAME = 'django-podcast-feed'
DESCRIPTION = 'Generate Apple Podcasts-compatible syndication feeds.'
with open('README.rst', encoding='utf-8') as f:
long_description = f.read()
setup(
name=NAME,
description=DESCRIPTION,
long_description=long_description,
keywords='django podcast feed',
version=VERSION,
license='MPL 2.0',
author='Ben Jeffrey',
author_email='[email protected]',
url='https://github.com/jeffbr13/xq',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Framework :: Django',
],
packages=find_packages(),
install_requires=[
'django'
],
)