Skip to content

Commit

Permalink
fix: add translations to package data (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
aht007 authored Oct 25, 2022
1 parent 0f0ea6c commit b65aeec
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,8 @@ htmlcov/
.project
.pycharm_helpers/
.pydevproject
.DS_Store

# Build and dist related files
build/
dist/
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""Setup for my_google_drive XBlock."""

from __future__ import absolute_import

import os

from setuptools import setup
Expand Down Expand Up @@ -43,5 +44,5 @@ def package_data(pkg, roots):
'google-calendar = google_drive:GoogleCalendarBlock'
]
},
package_data=package_data("google_drive", ["static", "templates", "public"]),
package_data=package_data("google_drive", ["static", "templates", "public", "translations"]),
)

0 comments on commit b65aeec

Please sign in to comment.