Skip to content

Commit

Permalink
Fix windows paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Armavica committed Mar 1, 2023
1 parent 1f798b3 commit 38020cd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

from codecs import open
from os.path import dirname, join, realpath
from pathlib import Path

from setuptools import find_packages, setup

Expand Down Expand Up @@ -73,7 +74,7 @@
# because of an upload-size limit by PyPI, we're temporarily removing docs from the tarball.
# Also see MANIFEST.in
# package_data={'docs': ['*']},
package_dir={pkg: pkg[5:].replace(".", "/") for pkg in tests},
package_dir={pkg: str(Path(pkg[5:].replace(".", "/"))) for pkg in tests},
classifiers=classifiers,
python_requires=">=3.8",
install_requires=install_reqs,
Expand Down

0 comments on commit 38020cd

Please sign in to comment.