File tree Expand file tree Collapse file tree 4 files changed +8
-13
lines changed Expand file tree Collapse file tree 4 files changed +8
-13
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ Setting up
7
7
8
8
To install the dependencies, run::
9
9
10
- $ pip install -r requirements
10
+ $ pip install -r requirements.txt
11
11
12
12
while you have a `virtual environment <http://docs.python-guide.org/en/latest/dev/virtualenvs/ >`_
13
13
activated.
Original file line number Diff line number Diff line change 1
- ===================================
2
1
PodGen (forked from python-feedgen)
3
2
===================================
4
3
@@ -24,7 +23,6 @@ More details about the project:
24
23
See the documentation link above for installation instructions and
25
24
guides on how to use this module.
26
25
27
- ----------
28
26
Known bugs
29
27
----------
30
28
Original file line number Diff line number Diff line change 1
- # Remember to add any new requirements to setup.py as well, if they are required
2
- # for users of this package.
3
- dateutils
4
- lxml
5
- pytz
6
- future
1
+ # Packages required by users of this library belong in setup.py
2
+ # Install using setup.py:
3
+ -e .
4
+ # Packages needed for development:
7
5
mock
8
- tinytag
9
- requests
6
+ Sphinx
Original file line number Diff line number Diff line change 2
2
# -*- coding: utf-8 -*-
3
3
4
4
from setuptools import setup
5
- import podgen .version
6
5
7
6
setup (
8
7
name = 'podgen' ,
9
8
packages = ['podgen' ],
10
- version = podgen .version .version_full_str ,
9
+ # Remember to update the version in podgen.version, too!
10
+ version = '1.0.0b5' ,
11
11
description = 'Generating podcasts with Python should be easy!' ,
12
12
author = 'Thorben W. S. Dahl' ,
13
13
author_email = '[email protected] ' ,
You can’t perform that action at this time.
0 commit comments