diff options
author | Thomas Touhey <thomas@touhey.fr> | 2019-05-07 15:41:59 +0200 |
---|---|---|
committer | Thomas Touhey <thomas@touhey.fr> | 2019-05-07 15:41:59 +0200 |
commit | f98704470e251e993ee9bd8286bf4ce7d17e223a (patch) | |
tree | dd1eac190cbc8552ff605843e479b37f1b8de064 | |
parent | 4c9a490e10b342bd8d9400ec72cfdca323fab9ad (diff) |
Version 0.2, some elements are still to be updated0.2
-rw-r--r-- | setup.cfg | 2 | ||||
-rwxr-xr-x | setup.py | 2 | ||||
-rwxr-xr-x | thcolor/__init__.py | 4 | ||||
-rwxr-xr-x | thcolor/_builtin/_css.py | 2 | ||||
-rwxr-xr-x | thcolor/_sys.py | 2 |
5 files changed, 6 insertions, 6 deletions
@@ -19,7 +19,7 @@ classifiers = [options] zip_safe = False include_package_data = True -packages = thcolor +packages = thcolor, thcolor._builtin test_suite = test install_requires = regex @@ -3,7 +3,7 @@ # Copyright (C) 2019 Thomas "Cakeisalie5" Touhey <thomas@touhey.fr> # This file is part of the thcolor Python 3.x module, which is MIT-licensed. #****************************************************************************** -""" Setup script for the textoutpc Python package and script. """ +""" Setup script for the thcolor Python package and script. """ from setuptools import setup as _setup diff --git a/thcolor/__init__.py b/thcolor/__init__.py index 7113573..d227e03 100755 --- a/thcolor/__init__.py +++ b/thcolor/__init__.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 #****************************************************************************** # Copyright (C) 2018 Thomas "Cakeisalie5" Touhey <thomas@touhey.fr> -# This file is part of the textoutpc project, which is MIT-licensed. +# This file is part of the thcolor project, which is MIT-licensed. #****************************************************************************** """ HTML/CSS-like color parsing, mainly for the `[color]` tag. Defines the `get_color()` function which returns an rgba value. @@ -20,6 +20,6 @@ __all__ = ["version", "Color", "Reference", "ColorExpressionDecodingError", "CSS1Reference", "CSS2Reference", "CSS3Reference", "CSS4Reference"] -version = "0.1" +version = "0.2" # End of file. diff --git a/thcolor/_builtin/_css.py b/thcolor/_builtin/_css.py index 2f075be..4981adc 100755 --- a/thcolor/_builtin/_css.py +++ b/thcolor/_builtin/_css.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 #****************************************************************************** # Copyright (C) 2019 Thomas "Cakeisalie5" Touhey <thomas@touhey.fr> -# This file is part of the textoutpc project, which is MIT-licensed. +# This file is part of the thcolor project, which is MIT-licensed. #****************************************************************************** """ Named colors and function definitions. Color names are case-insensitive. Taken from: https://www.w3schools.com/cssref/css_colors.asp """ diff --git a/thcolor/_sys.py b/thcolor/_sys.py index 7b05637..ee36dec 100755 --- a/thcolor/_sys.py +++ b/thcolor/_sys.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 #****************************************************************************** # Copyright (C) 2018 Thomas "Cakeisalie5" Touhey <thomas@touhey.fr> -# This file is part of the textoutpc project, which is MIT-licensed. +# This file is part of the thcolor project, which is MIT-licensed. #****************************************************************************** """ Conversions between color systems. """ |