forked from tobinus/python-podgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·58 lines (53 loc) · 2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name = 'podgen',
packages = ['podgen'],
# Remember to update the version in podgen.version, too!
version = '1.1.0',
description = 'Generating podcasts with Python should be easy!',
author = 'Thorben W. S. Dahl',
author_email = '[email protected]',
url = 'http://podgen.readthedocs.io/en/latest/',
keywords = ['feed', 'RSS', 'podcast', 'iTunes', 'generator'],
license = 'FreeBSD and LGPLv3+',
install_requires = ['lxml', 'dateutils', 'future', 'pytz', 'tinytag',
'requests'],
python_requires = '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Communications',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing',
'Topic :: Text Processing :: Markup',
'Topic :: Text Processing :: Markup :: XML'
],
long_description = '''\
PodGen
======
This module can be used to easily generate Podcasts. It is designed so you
don't need to read up on how RSS and iTunes functions – it just works!
See the documentation at http://podgen.readthedocs.io/en/latest/ for more
information.
It is licensed under the terms of both the FreeBSD license and the LGPLv3+.
Choose the one which is more convenient for you. For more details have a look
at license.bsd and license.lgpl.
'''
)