Skip to content

Commit

Permalink
PyPI wrangling.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhsamuel committed Aug 12, 2017
1 parent 27d3ba5 commit 9ca133b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
include README.md
include LICENSE
include Makefile
recursive-include cxx *.hh *.h *.cc *.md
recursive-include test *.cc
recursive-include python *.hh *.md
recursive-include conda-recipe *
prune *~
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def run(self):

setup(
name ="fixfmt",
version ="0.5.4",
version ="0.5.5",
description ="fixed-width formatters for C++ and Python",
long_description=long_description,
url ="https://github.com/alexhsamuel/fixfmt",
Expand All @@ -82,7 +82,8 @@ def run(self):
],

package_dir={"": "python"},
packages=["fixfmt"],
packages=["fixfmt", "fixfmt.lib"],
package_data={"": ["test/*"]},
ext_modules=[
Extension(
"fixfmt._ext",
Expand Down

0 comments on commit 9ca133b

Please sign in to comment.