woad 0.0.0__tar.gz
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.
- woad-0.0.0/AUTHORS.md +21 -0
- woad-0.0.0/LICENSE +30 -0
- woad-0.0.0/PKG-INFO +138 -0
- woad-0.0.0/README.md +99 -0
- woad-0.0.0/pyproject.toml +62 -0
- woad-0.0.0/setup.cfg +7 -0
- woad-0.0.0/setup.py +42 -0
- woad-0.0.0/tests/test_woad.py +10 -0
- woad-0.0.0/woad/__init__.py +16 -0
- woad-0.0.0/woad.egg-info/PKG-INFO +138 -0
- woad-0.0.0/woad.egg-info/SOURCES.txt +12 -0
- woad-0.0.0/woad.egg-info/dependency_links.txt +1 -0
- woad-0.0.0/woad.egg-info/top_level.txt +1 -0
woad-0.0.0/AUTHORS.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# woad.Python - Authors <!-- omit in toc -->
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Major Contributors
|
|
5
|
+
|
|
6
|
+
| Name | GitHub |
|
|
7
|
+
| ----------- | --------------------------------- |
|
|
8
|
+
| Matt Wilson | [mwsis](https://github.com/mwsis) |
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
## Defect reports, fixes and suggestions (for which we are very grateful)
|
|
12
|
+
|
|
13
|
+
| Name | GitHub |
|
|
14
|
+
| ------- | ------ |
|
|
15
|
+
| \<none> | |
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
Contributions are welcomed.
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
<!-- ########################### end of file ########################### -->
|
woad-0.0.0/LICENSE
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
woad.Python - BSD 3-Clause License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026, Matthew Wilson and Synesis Information Systems
|
|
4
|
+
All rights reserved.
|
|
5
|
+
|
|
6
|
+
Redistribution and use in source and binary forms, with or without
|
|
7
|
+
modification, are permitted provided that the following conditions are met:
|
|
8
|
+
|
|
9
|
+
1. Redistributions of source code must retain the above copyright notice,
|
|
10
|
+
this list of conditions and the following disclaimer.
|
|
11
|
+
|
|
12
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
13
|
+
this list of conditions and the following disclaimer in the documentation
|
|
14
|
+
and/or other materials provided with the distribution.
|
|
15
|
+
|
|
16
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
17
|
+
contributors may be used to endorse or promote products derived from
|
|
18
|
+
this software without specific prior written permission.
|
|
19
|
+
|
|
20
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
21
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
22
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
23
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
24
|
+
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
25
|
+
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
26
|
+
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
27
|
+
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
28
|
+
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
29
|
+
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
30
|
+
POSSIBILITY OF SUCH DAMAGE.
|
woad-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: woad
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Minimal ANSI terminal colour codes, for Python
|
|
5
|
+
Home-page: https://github.com/synesissoftware/woad.Python
|
|
6
|
+
Author: Matt Wilson
|
|
7
|
+
Author-email: Matt Wilson <matthew@synesis.com.au>
|
|
8
|
+
License: BSD-3-Clause
|
|
9
|
+
Project-URL: Bug Tracker, https://github.com/synesissoftware/woad.Python/issues
|
|
10
|
+
Project-URL: Changelog, https://github.com/synesissoftware/woad.Python/blob/master/CHANGES.md
|
|
11
|
+
Project-URL: Homepage, https://github.com/synesissoftware/woad.Python
|
|
12
|
+
Project-URL: Repository, https://github.com/synesissoftware/woad.Python
|
|
13
|
+
Keywords: ansi,colour,sgr,terminal,tty
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
16
|
+
Classifier: Natural Language :: English
|
|
17
|
+
Classifier: Operating System :: OS Independent
|
|
18
|
+
Classifier: Programming Language :: Python
|
|
19
|
+
Classifier: Programming Language :: Python :: 2
|
|
20
|
+
Classifier: Programming Language :: Python :: 2.7
|
|
21
|
+
Classifier: Programming Language :: Python :: 3
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
27
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
28
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
29
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
30
|
+
Classifier: Topic :: Terminals
|
|
31
|
+
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, !=3.7.*
|
|
32
|
+
Description-Content-Type: text/markdown
|
|
33
|
+
License-File: LICENSE
|
|
34
|
+
License-File: AUTHORS.md
|
|
35
|
+
Dynamic: author
|
|
36
|
+
Dynamic: home-page
|
|
37
|
+
Dynamic: license-file
|
|
38
|
+
Dynamic: requires-python
|
|
39
|
+
|
|
40
|
+
# woad.Python <!-- omit in toc -->
|
|
41
|
+
|
|
42
|
+
Minimal ANSI terminal colour codes, for Python
|
|
43
|
+
|
|
44
|
+

|
|
45
|
+
[](https://opensource.org/licenses/BSD-3-Clause)
|
|
46
|
+
[](https://pypi.org/project/woad/)
|
|
47
|
+
[](https://github.com/synesissoftware/woad.Python/releases/latest)
|
|
48
|
+
[](https://github.com/synesissoftware/woad.Python/commits/master)
|
|
49
|
+
[](https://github.com/synesissoftware/woad.Python/actions/workflows/python-package.yml)
|
|
50
|
+

|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
## Table of Contents <!-- omit in toc -->
|
|
54
|
+
|
|
55
|
+
- [Introduction](#introduction)
|
|
56
|
+
- [Installation](#installation)
|
|
57
|
+
- [Components](#components)
|
|
58
|
+
- [Project Information](#project-information)
|
|
59
|
+
- [Where to get help](#where-to-get-help)
|
|
60
|
+
- [Contribution guidelines](#contribution-guidelines)
|
|
61
|
+
- [Dependencies](#dependencies)
|
|
62
|
+
- [Efferent (fan-out)](#efferent-fan-out)
|
|
63
|
+
- [Development Dependencies](#development-dependencies)
|
|
64
|
+
- [Afferent (fan-in)](#afferent-fan-in)
|
|
65
|
+
- [Related projects](#related-projects)
|
|
66
|
+
- [License](#license)
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
## Introduction
|
|
70
|
+
|
|
71
|
+
**woad** provides the smallest useful set of fixed ANSI SGR colour sequences for library authors. It is not a console or TUI framework.
|
|
72
|
+
|
|
73
|
+
**woad.Python** is the **Python** implementation. It supports **Python 2.7** and **Python 3.8+**.
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
## Installation
|
|
77
|
+
|
|
78
|
+
Install via **pip**:
|
|
79
|
+
|
|
80
|
+
```
|
|
81
|
+
pip install woad
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
Use via **import**:
|
|
85
|
+
|
|
86
|
+
```Python
|
|
87
|
+
import woad
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
## Components
|
|
92
|
+
|
|
93
|
+
**woad.Python** currently ships the **`woad`** package and version metadata (`woad.__version__`). Colour codes, TTY/stream gating, and Windows virtual-terminal opt-in are not implemented in this 0.0.0 skeleton.
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
## Project Information
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
### Where to get help
|
|
100
|
+
|
|
101
|
+
[GitHub Page](https://github.com/synesissoftware/woad.Python "GitHub Page")
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
### Contribution guidelines
|
|
105
|
+
|
|
106
|
+
Defect reports, feature requests, and pull requests are welcome on https://github.com/synesissoftware/woad.Python.
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
### Dependencies
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
#### Efferent (fan-out)
|
|
113
|
+
|
|
114
|
+
None.
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
#### Development Dependencies
|
|
118
|
+
|
|
119
|
+
* [**pytest**](https://docs.pytest.org/)
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
#### Afferent (fan-in)
|
|
123
|
+
|
|
124
|
+
None (currently).
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
### Related projects
|
|
128
|
+
|
|
129
|
+
* [**woad.Ruby**](https://github.com/synesissoftware/woad.Ruby/)
|
|
130
|
+
* [**woad.Rust**](https://github.com/synesissoftware/woad.Rust/)
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
### License
|
|
134
|
+
|
|
135
|
+
**woad.Python** is released under the 3-clause BSD license. See [LICENSE](./LICENSE) for details.
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
<!-- ########################### end of file ########################### -->
|
woad-0.0.0/README.md
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
# woad.Python <!-- omit in toc -->
|
|
2
|
+
|
|
3
|
+
Minimal ANSI terminal colour codes, for Python
|
|
4
|
+
|
|
5
|
+

|
|
6
|
+
[](https://opensource.org/licenses/BSD-3-Clause)
|
|
7
|
+
[](https://pypi.org/project/woad/)
|
|
8
|
+
[](https://github.com/synesissoftware/woad.Python/releases/latest)
|
|
9
|
+
[](https://github.com/synesissoftware/woad.Python/commits/master)
|
|
10
|
+
[](https://github.com/synesissoftware/woad.Python/actions/workflows/python-package.yml)
|
|
11
|
+

|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## Table of Contents <!-- omit in toc -->
|
|
15
|
+
|
|
16
|
+
- [Introduction](#introduction)
|
|
17
|
+
- [Installation](#installation)
|
|
18
|
+
- [Components](#components)
|
|
19
|
+
- [Project Information](#project-information)
|
|
20
|
+
- [Where to get help](#where-to-get-help)
|
|
21
|
+
- [Contribution guidelines](#contribution-guidelines)
|
|
22
|
+
- [Dependencies](#dependencies)
|
|
23
|
+
- [Efferent (fan-out)](#efferent-fan-out)
|
|
24
|
+
- [Development Dependencies](#development-dependencies)
|
|
25
|
+
- [Afferent (fan-in)](#afferent-fan-in)
|
|
26
|
+
- [Related projects](#related-projects)
|
|
27
|
+
- [License](#license)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
## Introduction
|
|
31
|
+
|
|
32
|
+
**woad** provides the smallest useful set of fixed ANSI SGR colour sequences for library authors. It is not a console or TUI framework.
|
|
33
|
+
|
|
34
|
+
**woad.Python** is the **Python** implementation. It supports **Python 2.7** and **Python 3.8+**.
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
## Installation
|
|
38
|
+
|
|
39
|
+
Install via **pip**:
|
|
40
|
+
|
|
41
|
+
```
|
|
42
|
+
pip install woad
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
Use via **import**:
|
|
46
|
+
|
|
47
|
+
```Python
|
|
48
|
+
import woad
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
## Components
|
|
53
|
+
|
|
54
|
+
**woad.Python** currently ships the **`woad`** package and version metadata (`woad.__version__`). Colour codes, TTY/stream gating, and Windows virtual-terminal opt-in are not implemented in this 0.0.0 skeleton.
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
## Project Information
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
### Where to get help
|
|
61
|
+
|
|
62
|
+
[GitHub Page](https://github.com/synesissoftware/woad.Python "GitHub Page")
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
### Contribution guidelines
|
|
66
|
+
|
|
67
|
+
Defect reports, feature requests, and pull requests are welcome on https://github.com/synesissoftware/woad.Python.
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
### Dependencies
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
#### Efferent (fan-out)
|
|
74
|
+
|
|
75
|
+
None.
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
#### Development Dependencies
|
|
79
|
+
|
|
80
|
+
* [**pytest**](https://docs.pytest.org/)
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
#### Afferent (fan-in)
|
|
84
|
+
|
|
85
|
+
None (currently).
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
### Related projects
|
|
89
|
+
|
|
90
|
+
* [**woad.Ruby**](https://github.com/synesissoftware/woad.Ruby/)
|
|
91
|
+
* [**woad.Rust**](https://github.com/synesissoftware/woad.Rust/)
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
### License
|
|
95
|
+
|
|
96
|
+
**woad.Python** is released under the 3-clause BSD license. See [LICENSE](./LICENSE) for details.
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
<!-- ########################### end of file ########################### -->
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
build-backend = "setuptools.build_meta"
|
|
3
|
+
requires = [
|
|
4
|
+
"setuptools>=61.0",
|
|
5
|
+
]
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
[project]
|
|
9
|
+
authors = [
|
|
10
|
+
{ email = "matthew@synesis.com.au", name = "Matt Wilson" },
|
|
11
|
+
]
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Intended Audience :: Developers",
|
|
14
|
+
"License :: OSI Approved :: BSD License",
|
|
15
|
+
"Natural Language :: English",
|
|
16
|
+
"Operating System :: OS Independent",
|
|
17
|
+
"Programming Language :: Python",
|
|
18
|
+
"Programming Language :: Python :: 2",
|
|
19
|
+
"Programming Language :: Python :: 2.7",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
"Programming Language :: Python :: 3.8",
|
|
22
|
+
"Programming Language :: Python :: 3.9",
|
|
23
|
+
"Programming Language :: Python :: 3.10",
|
|
24
|
+
"Programming Language :: Python :: 3.11",
|
|
25
|
+
"Programming Language :: Python :: 3.12",
|
|
26
|
+
"Programming Language :: Python :: 3.13",
|
|
27
|
+
"Programming Language :: Python :: 3.14",
|
|
28
|
+
"Topic :: Software Development :: Libraries",
|
|
29
|
+
"Topic :: Terminals",
|
|
30
|
+
]
|
|
31
|
+
dependencies = [
|
|
32
|
+
]
|
|
33
|
+
description = "Minimal ANSI terminal colour codes, for Python"
|
|
34
|
+
keywords = [
|
|
35
|
+
"ansi",
|
|
36
|
+
"colour",
|
|
37
|
+
"sgr",
|
|
38
|
+
"terminal",
|
|
39
|
+
"tty",
|
|
40
|
+
]
|
|
41
|
+
license = { text = "BSD-3-Clause" }
|
|
42
|
+
name = "woad"
|
|
43
|
+
readme = "README.md"
|
|
44
|
+
requires-python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, !=3.7.*"
|
|
45
|
+
version = "0.0.0"
|
|
46
|
+
|
|
47
|
+
[project.urls]
|
|
48
|
+
"Bug Tracker" = "https://github.com/synesissoftware/woad.Python/issues"
|
|
49
|
+
Changelog = "https://github.com/synesissoftware/woad.Python/blob/master/CHANGES.md"
|
|
50
|
+
Homepage = "https://github.com/synesissoftware/woad.Python"
|
|
51
|
+
Repository = "https://github.com/synesissoftware/woad.Python"
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
[tool.setuptools.packages.find]
|
|
55
|
+
exclude = [
|
|
56
|
+
"examples*",
|
|
57
|
+
"tests*",
|
|
58
|
+
]
|
|
59
|
+
include = [
|
|
60
|
+
"woad",
|
|
61
|
+
"woad.*",
|
|
62
|
+
]
|
woad-0.0.0/setup.cfg
ADDED
woad-0.0.0/setup.py
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
|
|
2
|
+
import setuptools
|
|
3
|
+
|
|
4
|
+
setuptools.setup(
|
|
5
|
+
|
|
6
|
+
name='woad',
|
|
7
|
+
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, !=3.7.*',
|
|
8
|
+
version='0.0.0',
|
|
9
|
+
|
|
10
|
+
author='Matt Wilson',
|
|
11
|
+
author_email='matthew@synesis.com.au',
|
|
12
|
+
classifiers=[
|
|
13
|
+
|
|
14
|
+
'Intended Audience :: Developers',
|
|
15
|
+
"License :: OSI Approved :: BSD License",
|
|
16
|
+
'Natural Language :: English',
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
"Programming Language :: Python",
|
|
19
|
+
"Programming Language :: Python :: 2",
|
|
20
|
+
"Programming Language :: Python :: 2.7",
|
|
21
|
+
"Programming Language :: Python :: 3",
|
|
22
|
+
"Programming Language :: Python :: 3.8",
|
|
23
|
+
"Programming Language :: Python :: 3.9",
|
|
24
|
+
"Programming Language :: Python :: 3.10",
|
|
25
|
+
"Programming Language :: Python :: 3.11",
|
|
26
|
+
"Programming Language :: Python :: 3.12",
|
|
27
|
+
"Programming Language :: Python :: 3.13",
|
|
28
|
+
"Programming Language :: Python :: 3.14",
|
|
29
|
+
'Topic :: Software Development :: Libraries',
|
|
30
|
+
'Topic :: Terminals',
|
|
31
|
+
],
|
|
32
|
+
description='Minimal ANSI terminal colour codes, for Python',
|
|
33
|
+
keywords='ansi colour sgr terminal tty',
|
|
34
|
+
license='BSD-3-Clause',
|
|
35
|
+
long_description=open('README.md').read(),
|
|
36
|
+
long_description_content_type="text/markdown",
|
|
37
|
+
packages=setuptools.find_packages(exclude=[
|
|
38
|
+
'examples',
|
|
39
|
+
'tests',
|
|
40
|
+
]),
|
|
41
|
+
url='https://github.com/synesissoftware/woad.Python',
|
|
42
|
+
)
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
|
|
2
|
+
"""
|
|
3
|
+
Minimal ANSI terminal colour codes, for Python.
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
__author__ = 'Matt Wilson'
|
|
7
|
+
__copyright__ = 'Copyright 2026, Synesis Information Systems'
|
|
8
|
+
__credits__ = [
|
|
9
|
+
'Matt Wilson',
|
|
10
|
+
]
|
|
11
|
+
__email__ = 'matthew@synesis.com.au'
|
|
12
|
+
__license__ = 'BSD-3-Clause'
|
|
13
|
+
__maintainer__ = 'Matt Wilson'
|
|
14
|
+
__status__ = 'Alpha'
|
|
15
|
+
__version__ = '0.0.0'
|
|
16
|
+
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: woad
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Minimal ANSI terminal colour codes, for Python
|
|
5
|
+
Home-page: https://github.com/synesissoftware/woad.Python
|
|
6
|
+
Author: Matt Wilson
|
|
7
|
+
Author-email: Matt Wilson <matthew@synesis.com.au>
|
|
8
|
+
License: BSD-3-Clause
|
|
9
|
+
Project-URL: Bug Tracker, https://github.com/synesissoftware/woad.Python/issues
|
|
10
|
+
Project-URL: Changelog, https://github.com/synesissoftware/woad.Python/blob/master/CHANGES.md
|
|
11
|
+
Project-URL: Homepage, https://github.com/synesissoftware/woad.Python
|
|
12
|
+
Project-URL: Repository, https://github.com/synesissoftware/woad.Python
|
|
13
|
+
Keywords: ansi,colour,sgr,terminal,tty
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
16
|
+
Classifier: Natural Language :: English
|
|
17
|
+
Classifier: Operating System :: OS Independent
|
|
18
|
+
Classifier: Programming Language :: Python
|
|
19
|
+
Classifier: Programming Language :: Python :: 2
|
|
20
|
+
Classifier: Programming Language :: Python :: 2.7
|
|
21
|
+
Classifier: Programming Language :: Python :: 3
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
27
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
28
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
29
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
30
|
+
Classifier: Topic :: Terminals
|
|
31
|
+
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, !=3.7.*
|
|
32
|
+
Description-Content-Type: text/markdown
|
|
33
|
+
License-File: LICENSE
|
|
34
|
+
License-File: AUTHORS.md
|
|
35
|
+
Dynamic: author
|
|
36
|
+
Dynamic: home-page
|
|
37
|
+
Dynamic: license-file
|
|
38
|
+
Dynamic: requires-python
|
|
39
|
+
|
|
40
|
+
# woad.Python <!-- omit in toc -->
|
|
41
|
+
|
|
42
|
+
Minimal ANSI terminal colour codes, for Python
|
|
43
|
+
|
|
44
|
+

|
|
45
|
+
[](https://opensource.org/licenses/BSD-3-Clause)
|
|
46
|
+
[](https://pypi.org/project/woad/)
|
|
47
|
+
[](https://github.com/synesissoftware/woad.Python/releases/latest)
|
|
48
|
+
[](https://github.com/synesissoftware/woad.Python/commits/master)
|
|
49
|
+
[](https://github.com/synesissoftware/woad.Python/actions/workflows/python-package.yml)
|
|
50
|
+

|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
## Table of Contents <!-- omit in toc -->
|
|
54
|
+
|
|
55
|
+
- [Introduction](#introduction)
|
|
56
|
+
- [Installation](#installation)
|
|
57
|
+
- [Components](#components)
|
|
58
|
+
- [Project Information](#project-information)
|
|
59
|
+
- [Where to get help](#where-to-get-help)
|
|
60
|
+
- [Contribution guidelines](#contribution-guidelines)
|
|
61
|
+
- [Dependencies](#dependencies)
|
|
62
|
+
- [Efferent (fan-out)](#efferent-fan-out)
|
|
63
|
+
- [Development Dependencies](#development-dependencies)
|
|
64
|
+
- [Afferent (fan-in)](#afferent-fan-in)
|
|
65
|
+
- [Related projects](#related-projects)
|
|
66
|
+
- [License](#license)
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
## Introduction
|
|
70
|
+
|
|
71
|
+
**woad** provides the smallest useful set of fixed ANSI SGR colour sequences for library authors. It is not a console or TUI framework.
|
|
72
|
+
|
|
73
|
+
**woad.Python** is the **Python** implementation. It supports **Python 2.7** and **Python 3.8+**.
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
## Installation
|
|
77
|
+
|
|
78
|
+
Install via **pip**:
|
|
79
|
+
|
|
80
|
+
```
|
|
81
|
+
pip install woad
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
Use via **import**:
|
|
85
|
+
|
|
86
|
+
```Python
|
|
87
|
+
import woad
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
## Components
|
|
92
|
+
|
|
93
|
+
**woad.Python** currently ships the **`woad`** package and version metadata (`woad.__version__`). Colour codes, TTY/stream gating, and Windows virtual-terminal opt-in are not implemented in this 0.0.0 skeleton.
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
## Project Information
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
### Where to get help
|
|
100
|
+
|
|
101
|
+
[GitHub Page](https://github.com/synesissoftware/woad.Python "GitHub Page")
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
### Contribution guidelines
|
|
105
|
+
|
|
106
|
+
Defect reports, feature requests, and pull requests are welcome on https://github.com/synesissoftware/woad.Python.
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
### Dependencies
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
#### Efferent (fan-out)
|
|
113
|
+
|
|
114
|
+
None.
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
#### Development Dependencies
|
|
118
|
+
|
|
119
|
+
* [**pytest**](https://docs.pytest.org/)
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
#### Afferent (fan-in)
|
|
123
|
+
|
|
124
|
+
None (currently).
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
### Related projects
|
|
128
|
+
|
|
129
|
+
* [**woad.Ruby**](https://github.com/synesissoftware/woad.Ruby/)
|
|
130
|
+
* [**woad.Rust**](https://github.com/synesissoftware/woad.Rust/)
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
### License
|
|
134
|
+
|
|
135
|
+
**woad.Python** is released under the 3-clause BSD license. See [LICENSE](./LICENSE) for details.
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
<!-- ########################### end of file ########################### -->
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
woad
|