Skip to content

Commit 362f9c7

Browse files
author
Steven Silvester
committed
add package data
1 parent 83b6f66 commit 362f9c7

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

setup.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
import pathlib
2-
from setuptools import setup, find_packages
2+
from setuptools import setup
33
from setupbase import (
4-
get_version
4+
get_version, find_packages
55
)
66

7-
87
here = pathlib.Path('.')
98
version_path = here.joinpath('jupyter_server', '_version.py')
109
VERSION = get_version(str(version_path))
@@ -18,6 +17,11 @@
1817
long_description = README,
1918
version = VERSION,
2019
packages = find_packages('.'),
20+
package_data = {
21+
'notebook' : ['templates/*'],
22+
'notebook.i18n': ['*/LC_MESSAGES/*.*'],
23+
'notebook.services.api': ['api.yaml'],
24+
},
2125
author = 'Jupyter Development Team',
2226
author_email = '[email protected]',
2327
url = 'http://jupyter.org',

0 commit comments

Comments
 (0)