Skip to content
This repository has been archived by the owner on Feb 6, 2023. It is now read-only.

Fix dict mapping on package_data to be list #15

Merged
merged 1 commit into from
Sep 10, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ def run(self):
install_requires=dependencies,
include_package_data=True,
package_data={
'chainerrl_visualizer': {
'chainerrl_visualizer': [
'templates/*',
'static/**/*',
}
]
},
author='sykwer',
author_email='[email protected]',
Expand Down