Skip to content

Commit 69a32af

Browse files
committed
New release, add release artifacts to gitignore
Make a few adjustments to setup.py as well.
1 parent 6a6dd9a commit 69a32af

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,14 @@ tmp_Atomfeed.xml
1212
tmp_Rssfeed.xml
1313
# JetBrains IDE
1414
.idea/
15+
16+
# Documentation build
1517
/doc/_build
1618
/docs
19+
20+
# Distribution and building the package
21+
/dist
22+
/MANIFEST
23+
/build
24+
/podgen.egg-info
25+

podgen/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"""
1212

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

1616

1717
'Version of python-podgen represented as string'

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33

4-
from distutils.core import setup
4+
from setuptools import setup
55
import podgen.version
66

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

0 commit comments

Comments
 (0)