We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83b6f66 commit 362f9c7Copy full SHA for 362f9c7
setup.py
@@ -1,10 +1,9 @@
1
import pathlib
2
-from setuptools import setup, find_packages
+from setuptools import setup
3
from setupbase import (
4
- get_version
+ get_version, find_packages
5
)
6
7
-
8
here = pathlib.Path('.')
9
version_path = here.joinpath('jupyter_server', '_version.py')
10
VERSION = get_version(str(version_path))
@@ -18,6 +17,11 @@
18
17
long_description = README,
19
version = VERSION,
20
packages = find_packages('.'),
+ package_data = {
21
+ 'notebook' : ['templates/*'],
22
+ 'notebook.i18n': ['*/LC_MESSAGES/*.*'],
23
+ 'notebook.services.api': ['api.yaml'],
24
+ },
25
author = 'Jupyter Development Team',
26
author_email = '[email protected]',
27
url = 'http://jupyter.org',
0 commit comments