Skip to content

Commit b4bfb50

Browse files
committed
Fix minor details of package structure
1 parent 6ecd7d7 commit b4bfb50

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

MANIFEST.in

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
include README.txt LICENSE.txt
2-
1+
include README.md LICENSE.txt

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
if __name__ == "__main__":
44

5-
try:
6-
import pypandoc
7-
long_description = pypandoc.convert('README.md', 'rst')
8-
except(IOError, ImportError):
5+
try:
6+
import pypandoc
7+
long_description = pypandoc.convert('README.md', 'rst')
8+
except(IOError, ImportError):
99
long_description = open('README.md').read()
1010

1111
__version__ = "0.8.1"
@@ -24,7 +24,7 @@
2424
"Topic :: Scientific/Engineering"
2525
],
2626
url=base_url,
27-
download_url="{0}/archive/prefpy-{1}.tar.gz".format(base_url, __version__),
27+
download_url="{0}/archive/v{1}.tar.gz".format(base_url, __version__),
2828
author="Peter Piech",
2929
license="GPL-3",
3030
packages=["prefpy"],

0 commit comments

Comments
 (0)