Skip to content

Commit 211b275

Browse files
committed
Updated information for PyPI
1 parent 10de1a6 commit 211b275

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
markdown_include.egg-info/
33
dist/
44
*.pyc
5+
test.py
6+
test.md

markdown_include/include.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434

3535
class MarkdownInclude(Extension):
36-
def __init__(self, configs=[]):
36+
def __init__(self, configs={}):
3737
self.config = {
3838
'base_path': ['.', 'Default location from which to evaluate ' \
3939
'relative paths for the include statement.'],

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
setup(
1212
name = 'markdown-include',
1313
packages = find_packages(),
14-
version = '0.4.2',
14+
version = '0.5.0',
1515
description = 'This is an extension to Python-Markdown which provides an "include" function, similar to that found in LaTeX (and also the C pre-processor and Fortran). I originally wrote it for my FORD Fortran auto-documentation generator.',
1616
long_description = long_description,
1717
author = 'Chris MacMackin',
1818
author_email = '[email protected]',
1919
url = 'https://github.com/cmacmackin/markdown-include/',
20-
download_url = 'https://github.com/cmacmackin/markdown-include/tarball/v0.4.2',
20+
download_url = 'https://github.com/cmacmackin/markdown-include/tarball/v0.5.0',
2121
keywords = ['Markdown', 'typesetting', 'include', 'plugin', 'extension'],
2222
classifiers=[
2323
# How mature is this project? Common values are

0 commit comments

Comments
 (0)