Skip to content

Commit

Permalink
Move the README template to data/
Browse files Browse the repository at this point in the history
  • Loading branch information
nickjj committed Sep 11, 2014
1 parent 2b373ae commit 875c1bd
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.4.6

- Attempt to fix the readme template's path in the data/ dir

## v0.4.5

- Fix the VERSION file in setup.py and remove the old templates dir
Expand Down
1 change: 1 addition & 0 deletions RELEASES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Version Release date
---------------------------
v0.4.6 09/11/2014
v0.4.5 09/11/2014
v0.4.4 09/11/2014
v0.4.3 09/11/2014
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.5
0.4.6
3 changes: 1 addition & 2 deletions ansigenome/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,7 @@
ANSIBLE_FOLDERS = ("defaults", "handlers", "meta",
"tasks", "templates", "tests", "vars")

README_TEMPLATE_PATH = os.path.join(PACKAGE_RESOURCE,
"templates", "README.md.j2")
README_TEMPLATE_PATH = os.path.join(PACKAGE_RESOURCE, "README.md.j2")

DEFAULT_META_FILE = """---
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
license="GPLv3",
install_requires=["jinja2", "PyYAML", "setuptools"],
packages=["ansigenome"],
package_data={"ansigenome": ["VERSION", "data/*", "data/templates/*"]},
package_data={"ansigenome": ["VERSION", "data/*"]},
scripts=["bin/ansigenome"],
data_files=[])

0 comments on commit 875c1bd

Please sign in to comment.