Skip to content

Commit

Permalink
Merge pull request #42 from zoews/patch-1
Browse files Browse the repository at this point in the history
Removes slashes in data_files to prevent Windows install failure
  • Loading branch information
samithaliyanage authored Dec 13, 2018
2 parents ce60568 + dfa2747 commit faff47a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ def __init__(self, *args, **kwargs):
packages=find_packages(),
install_requires=install_requires,
include_package_data=True,
data_files=[('htrc/mock/volumes/', ['htrc/mock/volumes/example.zip']),
('htrc/', ['htrc/.htrc.default'])],
data_files=[('htrc/mock/volumes', ['htrc/mock/volumes/example.zip']),
('htrc', ['htrc/.htrc.default'])],
zip_safe=False,
entry_points={
'console_scripts': ['htrc = htrc.__main__:main']
Expand Down

0 comments on commit faff47a

Please sign in to comment.