Skip to content

Commit 270eb99

Browse files
committed
add
1 parent f479cf2 commit 270eb99

5 files changed

Lines changed: 8 additions & 6 deletions

File tree

SpatialTools.egg-info/PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: SpatialTools
3-
Version: 2.0.0
3+
Version: 2.0.1
44
Summary: spatial tools for S1000
55
Home-page: UNKNOWN
66
License: UNKNOWN

SpatialTools.egg-info/requires.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ jupyter-dash>=0.4.2
1010
matplotlib>=3.6.0
1111
matplotlib-inline>=0.1.6
1212
plotly>=5.10.0
13-
pickle>=3.0.0
13+
jsonpickle>=3.0.0
14+
pickleshare>=0.7.5
1415
seaborn>=0.12.0
1516
dash-uploader==0.7.0a1

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
from setuptools import setup
22
from setuptools import find_packages
33

4-
VERSION = '2.0.0'
4+
VERSION = '2.0.1'
55

66
setup(
77
name='SpatialTools', # package name
8-
version='2.0.0', # package version
8+
version='2.0.1', # package version
99
description='spatial tools for S1000', # package description
1010
packages=find_packages(),
1111
install_requires=['anndata>=0.8.0',
@@ -21,7 +21,8 @@
2121
'matplotlib-inline>=0.1.6',
2222
'plotly>=5.10.0',
2323
# 'scikit-learn==1.1.2',
24-
'pickle>=3.0.0',
24+
'jsonpickle>=3.0.0',
25+
'pickleshare>=0.7.5',
2526
'seaborn>=0.12.0',
2627
'dash-uploader==0.7.0a1'],
2728
zip_safe=False,

spatial_tools/.DS_Store

0 Bytes
Binary file not shown.

spatial_tools/run_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
parser.add_argument('--port', type=int, help='port', default=5070)
2121
input_args = parser.parse_args()
2222

23-
spatial_tools.SpatialApp.run_dash(port=input_args.port, debug=True)
23+
spatial_tools.SpatialApp.run_dash(port=input_args.port, debug=False)
2424

2525

0 commit comments

Comments
 (0)