-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 709 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 709 Bytes
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
#!/usr/bin/env python
from setuptools import setup
install_requires = [
'six>=1.6.1',
'requests>=2.9.1',
'responses>=0.5.0',
'pydub>=0.16.0',
'apscheduler>=3.0.5'
]
setup(
name="typecaster",
version="0.1.0",
author="Neil Bedi",
author_email="neilbedi@gmail.com",
description=("Dynamically generate podcasts from text."),
license="MIT",
keywords="podcast",
url="https://github.com/nbedi/typecaster",
packages=['typecaster'],
long_description=open('README.rst').read(),
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Software Development :: Libraries :: Python Modules"
],
install_requires=install_requires
)