forked from jkbrzt/podcats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (42 loc) · 1.31 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
import codecs
from setuptools import setup
def _get_long_description():
with codecs.open('README.rst', encoding='utf8') as f:
return f.read()
setup(
name='podcats',
version='0.6.3',
description=('An application that generates RSS feeds for podcast '
'episodes from local audio files and, optionally, '
'exposes both via a built-in web server'),
long_description=_get_long_description(),
url='https://github.com/jakubroztocil/podcats',
download_url='https://github.com/jakubroztocil/podcats',
author='Jakub Roztocil',
author_email='[email protected]',
license='BSD',
packages=[
'podcats'
],
include_package_data=True,
entry_points={
'console_scripts': [
'podcats = podcats:main',
],
},
install_requires=[
'Flask>=0.9',
'mutagen>=1.20',
'humanize>=0.5.1',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.7',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: BSD License',
'Topic :: Multimedia :: Sound/Audio',
],
)