From 2c0e74c044f9d05975288d61f9c0f5690141c3ea Mon Sep 17 00:00:00 2001 From: Eric Douglass Date: Thu, 20 Apr 2017 16:47:36 -0700 Subject: [PATCH] adding dist/ to gitignore, creating MANIFEST to include README.md, patch bump setup --- .gitignore | 1 + MANIFEST.in | 1 + setup.py | 4 ++-- 3 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 MANIFEST.in diff --git a/.gitignore b/.gitignore index 83306c7..8f84bae 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ env/ __pycache__/ *.egg-info +dist/ diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..bb3ec5f --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +include README.md diff --git a/setup.py b/setup.py index 573fc47..67bbba5 100644 --- a/setup.py +++ b/setup.py @@ -2,12 +2,12 @@ setup( name="yamldown", - version="0.1.2", + version="0.1.3", packages=["yamldown"], author="edouglass", author_email="edouglass@lbl.gov", url="https://github.com/dougli1sqrd/yamldown", - download_url="https://github.com/dougli1sqrd/yamldown/archive/0.1.2.tar.gz", + download_url="https://github.com/dougli1sqrd/yamldown/archive/0.1.3.tar.gz", description="Python library for loading and dumping \"yamldown\" (markdown with embedded yaml) files.", long_description=open("README.md").read(), keywords=["yaml", "markdown"],