Skip to content

Commit

Permalink
Fix the incorrect file names in setup.py and MANIFEST.in
Browse files Browse the repository at this point in the history
  • Loading branch information
joowani committed May 3, 2016
1 parent 1006941 commit e2e7f9a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
include README.md
include README.rst
include LICENSE
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Introduction

Do you have too many git repositories or vagrant machines to manage?
Does your work require you to switch between the same directories over
and over? Are you a lazy programmer who is always looking ways to type
less? If you answered *yes* to any of these questions, then **dtags**
and over? Are you a lazy programmer who is always looking for ways to
type less? If you answered *yes* to any of these questions, then **dtags**
may be for you!

Features
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[metadata]
description-file = README.md
description-file = README.rst

[bdist_wheel]
universal = 1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
with open('./dtags/version.py') as fp:
exec(fp.read(), version)

with open('./README.md') as fp:
with open('./README.rst') as fp:
description = fp.read()


Expand Down

0 comments on commit e2e7f9a

Please sign in to comment.