Skip to content

Commit 5d7899c

Browse files
authored
Merge pull request #60 from tobinus/fix-requirements-txt-#59
Fix requirements.txt #59
2 parents a603f49 + c26d9fc commit 5d7899c

File tree

4 files changed

+8
-13
lines changed

4 files changed

+8
-13
lines changed

doc/contributing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Setting up
77

88
To install the dependencies, run::
99

10-
$ pip install -r requirements
10+
$ pip install -r requirements.txt
1111

1212
while you have a `virtual environment <http://docs.python-guide.org/en/latest/dev/virtualenvs/>`_
1313
activated.

readme.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
===================================
21
PodGen (forked from python-feedgen)
32
===================================
43

@@ -24,7 +23,6 @@ More details about the project:
2423
See the documentation link above for installation instructions and
2524
guides on how to use this module.
2625

27-
----------
2826
Known bugs
2927
----------
3028

requirements.txt

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
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:
75
mock
8-
tinytag
9-
requests
6+
Sphinx

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
# -*- coding: utf-8 -*-
33

44
from setuptools import setup
5-
import podgen.version
65

76
setup(
87
name = 'podgen',
98
packages = ['podgen'],
10-
version = podgen.version.version_full_str,
9+
# Remember to update the version in podgen.version, too!
10+
version = '1.0.0b5',
1111
description = 'Generating podcasts with Python should be easy!',
1212
author = 'Thorben W. S. Dahl',
1313
author_email = '[email protected]',

0 commit comments

Comments
 (0)