Skip to content

Commit

Permalink
New release, add release artifacts to gitignore
Browse files Browse the repository at this point in the history
Make a few adjustments to setup.py as well.
  • Loading branch information
tobinus committed Jul 7, 2016
1 parent 6a6dd9a commit 69a32af
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,14 @@ tmp_Atomfeed.xml
tmp_Rssfeed.xml
# JetBrains IDE
.idea/

# Documentation build
/doc/_build
/docs

# Distribution and building the package
/dist
/MANIFEST
/build
/podgen.egg-info

2 changes: 1 addition & 1 deletion podgen/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"""

'Version of python-podgen represented as tuple'
version = (0, 3, 2)
version = (1, 0, 0, "dev1")


'Version of python-podgen represented as string'
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from distutils.core import setup
from setuptools import setup
import podgen.version

setup(
Expand All @@ -12,7 +12,7 @@
author = 'Thorben W. S. Dahl',
author_email = '[email protected]',
url = 'http://podgen.readthedocs.io/en/latest/',
keywords = ['feed','RSS','podcast','iTunes'],
keywords = ['feed', 'RSS', 'podcast', 'iTunes', 'generator'],
license = 'FreeBSD and LGPLv3+',
install_requires = ['lxml', 'dateutils', 'future', 'pytz'],
classifiers = [
Expand Down

0 comments on commit 69a32af

Please sign in to comment.