File tree 3 files changed +23
-5
lines changed 3 files changed +23
-5
lines changed Original file line number Diff line number Diff line change
1
+ ![ CI] ( https://github.com/pygfx/wgpu-py/workflows/CI/badge.svg )
2
+
1
3
# dash_slicer
2
4
3
5
A volume slicer for Dash
4
6
5
7
6
- The API is currently a WIP.
8
+ ## Status
9
+
10
+ This work is marked as alpha - some essential features are still in
11
+ development, and some parts of the API may change in future releases.
7
12
8
13
9
14
## Installation
10
15
11
- Eventually, this would be pip-installable. For now, use the developer workflow.
16
+ ```
17
+ $ pip install dash-slicer
18
+ ```
19
+
20
+ Dash-slicer depends on Python 3.6+ plus some [ dependencies] ( requirements.txt ) .
12
21
13
22
14
23
## Usage example
Original file line number Diff line number Diff line change 6
6
from .slicer import VolumeSlicer # noqa: F401
7
7
8
8
9
- __version__ = "0.0.1 "
9
+ __version__ = "0.1.0 "
10
10
version_info = tuple (map (int , __version__ .split ("." )))
Original file line number Diff line number Diff line change
1
+ """
2
+ Setup script to distribute dash-slicer.
3
+
4
+ * clear your dist dir
5
+ * python setup.py sdist bdist_wheel
6
+ * twine upload dist/*
7
+ """
8
+
1
9
import re
2
10
3
11
from setuptools import find_packages , setup
23
31
install_requires = runtime_deps ,
24
32
license = "MIT" ,
25
33
description = SUMMARY ,
26
- long_description = open ("README.md" ).read (),
27
34
long_description_content_type = "text/markdown" ,
35
+ long_description = open ("README.md" ).read (),
28
36
author = "Plotly" ,
29
37
30
- # url="https://github.com/plotly/will be renamed? ",
38
+ url = "https://github.com/plotly/dash-slicer " ,
31
39
data_files = [("" , ["LICENSE" ])],
32
40
zip_safe = True , # not if we put JS in a seperate file, I think
33
41
classifiers = [
37
45
"Programming Language :: Python :: 3" ,
38
46
"Topic :: Software Development :: Libraries :: Python Modules" ,
39
47
"Topic :: Scientific/Engineering :: Visualization" ,
48
+ "Topic :: Software Development :: User Interfaces" ,
40
49
],
41
50
)
You can’t perform that action at this time.
0 commit comments