scales-python 1.4.0.9000__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- scales/__init__.py +295 -0
- scales/_colors.py +272 -0
- scales/_palettes_data.py +595 -0
- scales/_utils.py +579 -0
- scales/bounds.py +512 -0
- scales/breaks.py +627 -0
- scales/breaks_log.py +268 -0
- scales/colour_manip.py +681 -0
- scales/colour_mapping.py +593 -0
- scales/colour_ramp.py +126 -0
- scales/labels.py +2144 -0
- scales/minor_breaks.py +197 -0
- scales/palettes.py +1328 -0
- scales/py.typed +0 -0
- scales/range.py +223 -0
- scales/scale_continuous.py +146 -0
- scales/scale_discrete.py +196 -0
- scales/transforms.py +1338 -0
- scales_python-1.4.0.9000.dist-info/METADATA +73 -0
- scales_python-1.4.0.9000.dist-info/RECORD +22 -0
- scales_python-1.4.0.9000.dist-info/WHEEL +4 -0
- scales_python-1.4.0.9000.dist-info/licenses/LICENSE +3 -0
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: scales-python
|
|
3
|
+
Version: 1.4.0.9000
|
|
4
|
+
Summary: Python port of the R scales package (tracks R scales 1.4.0.9000)
|
|
5
|
+
Project-URL: Homepage, https://github.com/Bio-Babel/scales_py
|
|
6
|
+
Project-URL: Repository, https://github.com/Bio-Babel/scales_py
|
|
7
|
+
Project-URL: Issues, https://github.com/Bio-Babel/scales_py/issues
|
|
8
|
+
Project-URL: Documentation, https://github.com/Bio-Babel/scales_py#readme
|
|
9
|
+
Author-email: Jeffery Liu <jeffliu.lucky@gmail.com>
|
|
10
|
+
License-Expression: MIT
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Keywords: R-port,breaks,colour-palettes,ggplot2,scales,transforms,visualization
|
|
13
|
+
Classifier: Development Status :: 4 - Beta
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: Intended Audience :: Science/Research
|
|
16
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
17
|
+
Classifier: Operating System :: MacOS
|
|
18
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
19
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
20
|
+
Classifier: Programming Language :: Python :: 3
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
24
|
+
Classifier: Topic :: Scientific/Engineering :: Visualization
|
|
25
|
+
Classifier: Typing :: Typed
|
|
26
|
+
Requires-Python: >=3.10
|
|
27
|
+
Requires-Dist: numpy>=1.24
|
|
28
|
+
Provides-Extra: dev
|
|
29
|
+
Requires-Dist: build; extra == 'dev'
|
|
30
|
+
Requires-Dist: pytest; extra == 'dev'
|
|
31
|
+
Requires-Dist: pytest-cov; extra == 'dev'
|
|
32
|
+
Requires-Dist: ruff; extra == 'dev'
|
|
33
|
+
Requires-Dist: twine; extra == 'dev'
|
|
34
|
+
Provides-Extra: docs
|
|
35
|
+
Requires-Dist: mkdocs; extra == 'docs'
|
|
36
|
+
Requires-Dist: mkdocs-jupyter; extra == 'docs'
|
|
37
|
+
Requires-Dist: mkdocs-material; extra == 'docs'
|
|
38
|
+
Requires-Dist: mkdocstrings[python]; extra == 'docs'
|
|
39
|
+
Description-Content-Type: text/markdown
|
|
40
|
+
|
|
41
|
+
# scales_py
|
|
42
|
+
|
|
43
|
+
Python port of the R **scales** package (tracks R scales 1.4.0.9000).
|
|
44
|
+
|
|
45
|
+
The Python import name is `scales`; the PyPI distribution name is `scales-python`
|
|
46
|
+
(the name `scales` is already taken on PyPI).
|
|
47
|
+
|
|
48
|
+
## Installation
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
pip install scales-python
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
Or, for a local development checkout:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
git clone https://github.com/Bio-Babel/scales_py.git
|
|
58
|
+
cd scales_py
|
|
59
|
+
pip install -e ".[dev]"
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
## Quick Start
|
|
63
|
+
|
|
64
|
+
```python
|
|
65
|
+
import scales
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
## Documentation
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
pip install -e ".[docs]"
|
|
72
|
+
mkdocs serve
|
|
73
|
+
```
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
scales/__init__.py,sha256=V-D3ijIE44_ZMw_sYR6McVUoUrKJESLyw8UwBbf5XTs,7071
|
|
2
|
+
scales/_colors.py,sha256=ogHs40f3jVDrJpVZiFwO0qa-WTxZsySqZPJ-Ax2Mpwc,7860
|
|
3
|
+
scales/_palettes_data.py,sha256=Qlm09t2HzxNh3TpoMdwyq9sEWZjCLwtlSOGsZqRBPTY,40089
|
|
4
|
+
scales/_utils.py,sha256=AHiwELrObsZiXjE0AaVJQhXWYu0PUpDmVlRmeN_Ge8o,14512
|
|
5
|
+
scales/bounds.py,sha256=QZTQu-7w2T-8LT4LhnPsFjaeSsvsBaGrNfN4auvZzgs,13551
|
|
6
|
+
scales/breaks.py,sha256=JLSxSb3jjh-67mt5T5YU-ivgB67JNoHTUDbsIvdYSck,18226
|
|
7
|
+
scales/breaks_log.py,sha256=QBaq2lH1q7ZkMqc-jcapXDIrA6yokB3THONavlg4H3E,9353
|
|
8
|
+
scales/colour_manip.py,sha256=h5cIe2nHjdmi48bI3aU2eM0soi9fJwrro_RqyARNq8A,19739
|
|
9
|
+
scales/colour_mapping.py,sha256=Czk3QODJnm7qee59yyJ_OIekPzm8sKl5QsMryxdsnVQ,18599
|
|
10
|
+
scales/colour_ramp.py,sha256=A_cD4hz-yPHKyAcmbNAbzSufhneUFwpzx6h3YoEGDCg,4587
|
|
11
|
+
scales/labels.py,sha256=uy5GTZzM8Iy8oS19tlMydGZYhob7--uyA7esEEkp3W4,61548
|
|
12
|
+
scales/minor_breaks.py,sha256=ffm9kYNmhmqHb-GfT4GJOJXSVRNc-x_uTf6JELHuin8,5912
|
|
13
|
+
scales/palettes.py,sha256=UIQlZpjg9pVE1gqSqg4dQan_QLUZ7AYzqVq3L9YEIx4,39570
|
|
14
|
+
scales/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
+
scales/range.py,sha256=eY_OdLPSTXFeV_Csd1pwp6x-PzjjZ8Xzawe_PXPYZSQ,7197
|
|
16
|
+
scales/scale_continuous.py,sha256=Iy8r2y1cuk_BiWvUD9mIyrX5FHZQoKcYuwu__OEizks,4336
|
|
17
|
+
scales/scale_discrete.py,sha256=OQc2ACq2PwN8WEbbe14u7iUjtdALhXFIPZBpHmJ2L1w,5591
|
|
18
|
+
scales/transforms.py,sha256=aagZbGBQwRKwFNuo_7Za7JRU9-eg9gCaj1sXrSgE8so,39157
|
|
19
|
+
scales_python-1.4.0.9000.dist-info/METADATA,sha256=9H9qb_eOWIeKAAawn-MmLUH8mjUgC3Mi9VofTxIW_iA,2231
|
|
20
|
+
scales_python-1.4.0.9000.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
|
|
21
|
+
scales_python-1.4.0.9000.dist-info/licenses/LICENSE,sha256=E0GJjw07cYRmJYj_8UZKbhevWQ-Swd3nVR6qBddvz9c,39
|
|
22
|
+
scales_python-1.4.0.9000.dist-info/RECORD,,
|