Skip to content

Commit 5ee09a9

Browse files
committed
fix pypi
1 parent 0b8d534 commit 5ee09a9

File tree

7 files changed

+5
-5
lines changed

7 files changed

+5
-5
lines changed

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
graft jupyter_xprahtml5/share
1+
graft jupyter_xprahtml5_proxy/share

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Connect to your database as instructed in the Quickstart section.
4949

5050
## Configuration
5151
This package calls `xpra` with a bunch of settings. Please read the [Xpra manual](https://xpra.org/manual.html) if you want to now the details.
52-
You have to modify `setup_xprahtml5()` in `jupyter_xprahtml5/__init__.py` for change.
52+
You have to modify `setup_xprahtml5()` in `jupyter_xprahtml5_proxy/__init__.py` for change.
5353

5454
## Credits
5555
- Xpra
File renamed without changes.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
with open(path.join(HERE, 'README.md'), 'r', encoding = 'utf-8') as fh:
66
long_description = fh.read()
77

8-
version='0.2.1'
8+
version='0.2.2'
99
setup(
1010
name = 'jupyter-xprahtml5-proxy',
1111
version = version,
@@ -31,7 +31,7 @@
3131

3232
entry_points = {
3333
'jupyter_serverproxy_servers': [
34-
'xprahtml5 = jupyter_xprahtml5:setup_xprahtml5',
34+
'xprahtml5 = jupyter_xprahtml5_proxy:setup_xprahtml5',
3535
]
3636
},
3737
install_requires = ['jupyter-server-proxy>=1.4.0'],

test/test_setupcall.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ def test_setupcall():
22
"""
33
Test the call of the setup function
44
"""
5-
import jupyter_xprahtml5 as jx
5+
import jupyter_xprahtml5_proxy as jx
66

77
print("\nRunning test_setupcall...")
88
print(jx.setup_xprahtml5())

0 commit comments

Comments
 (0)