Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jmelahman committed Jun 19, 2022
1 parent ba06a4f commit ddbc57b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ def find_package_data(base, globs, root="python-snapify"):
rv.extend([os.path.relpath(f, root) for f in files])
return rv


setup(
name="python-snapify",
version=VERSION,
Expand All @@ -40,9 +41,9 @@ def find_package_data(base, globs, root="python-snapify"):
long_description_content_type="text/markdown",
url="https://github.com/jmelahman/python-snapify",
py_modules=[],
ext_modules=mypycify([
os.path.join('pysnapify', x) for x in find_package_data('pysnapify', ['*.py'])
]),
ext_modules=mypycify(
[os.path.join("pysnapify", x) for x in find_package_data("pysnapify", ["*.py"])]
),
package_dir={"pysnapify": "pysnapify"},
packages=find_packages(),
scripts=["bin/snapify"],
Expand Down

0 comments on commit ddbc57b

Please sign in to comment.