Skip to content

Commit d61e07c

Browse files
authored
Merge pull request #33 from pauperpythonistas/pip-packageing-fixes
pip-packaging-fixes
2 parents 7185c72 + 4ecffa9 commit d61e07c

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

MANIFEST.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
include LICENSE
2-
include README.md
3-
include CHANGELOG.md
2+
include README.rst
3+
include CHANGELOG.rst
44
include requirements.txt
55
recursive-include geomark/ *
66
recursive-include docs *

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[bdist_wheel]
2+
universal=1

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ def get_install_requires():
2424

2525
setup(
2626
name='geomark',
27-
version='0.1.0',
27+
version='0.1.1',
2828
packages=find_packages(),
2929
include_package_data=True,
3030
license='BSD2',
3131
description='Tools for manipulating Geomark datasets',
3232
long_description=README,
3333
url='https://github.com/pauperpythonistas/python-geomark/',
34-
download_url='https://github.com/pauperpythonistas/python-geomark/archive/0.1.0.tar.gz',
34+
download_url='https://github.com/pauperpythonistas/python-geomark/archive/0.1.1.tar.gz',
3535
author='Adam Valair, Greg Sebastian',
3636
3737
install_requires=get_install_requires(),

0 commit comments

Comments
 (0)