Skip to content

Commit

Permalink
Fixes removes slashes in setup.py
Browse files Browse the repository at this point in the history
This should present pip failure in Windows with Anaconda, as per issue htrc#19
  • Loading branch information
cassws authored Jun 18, 2018
1 parent 80f6c91 commit dfa2747
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 @@ -84,8 +84,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 dfa2747

Please sign in to comment.