cleer 0.1.0a1__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.
@@ -0,0 +1,45 @@
1
+ # Changelog
2
+
3
+ Changelog for `cleer`.
4
+ All notable changes to this project will be documented in this file.
5
+
6
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
7
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
8
+
9
+ <!--
10
+ ## [Unreleased] - YYYY-MM-DD
11
+
12
+ ### Added
13
+
14
+ ### Changed
15
+
16
+ ### Deprecated
17
+
18
+ ### Removed
19
+
20
+ ### Fixed
21
+
22
+ ### Security
23
+ -->
24
+
25
+ <!--
26
+ ## [Unreleased] - YYYY-MM-DD
27
+
28
+ ### Added
29
+
30
+ ### Changed
31
+
32
+ ### Deprecated
33
+
34
+ ### Removed
35
+
36
+ ### Fixed
37
+
38
+ ### Security
39
+ -->
40
+
41
+
42
+ ## [0.1.0a1] - 2024-02-18
43
+
44
+ - Initial stub
45
+
cleer-0.1.0a1/LICENSE ADDED
@@ -0,0 +1,7 @@
1
+ Copyright 2024 Brandon Temple Paul
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,2 @@
1
+ include README.md
2
+ include CHANGELOG.md
cleer-0.1.0a1/PKG-INFO ADDED
@@ -0,0 +1,85 @@
1
+ Metadata-Version: 2.1
2
+ Name: cleer
3
+ Version: 0.1.0a1
4
+ Summary: Extensible python formatter with sane defaults.
5
+ Author: Brandon Temple Paul
6
+ Author-email: btemplepgit@gmail.com
7
+ License: MIT
8
+ Keywords: format,formatter,file,extend,custom
9
+ Classifier: Development Status :: 3 - Alpha
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Natural Language :: English
12
+ Classifier: Operating System :: POSIX :: Linux
13
+ Classifier: Operating System :: Unix
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3 :: Only
16
+ Classifier: Programming Language :: Python :: 3.8
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: Implementation :: CPython
22
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
23
+ Classifier: Topic :: Internet
24
+ Description-Content-Type: text/markdown
25
+ License-File: LICENSE
26
+ Requires-Dist: loguru
27
+ Provides-Extra: dev
28
+ Requires-Dist: build; extra == "dev"
29
+ Requires-Dist: coverage; extra == "dev"
30
+ Requires-Dist: nox; extra == "dev"
31
+ Requires-Dist: piccolo-theme; extra == "dev"
32
+ Requires-Dist: pytest; extra == "dev"
33
+ Requires-Dist: pytest-cov; extra == "dev"
34
+ Requires-Dist: sphinx; extra == "dev"
35
+ Requires-Dist: twine; extra == "dev"
36
+
37
+ # cleer
38
+
39
+ Coming soon! Extensible python formatter with sane defaults.
40
+
41
+ # Changelog
42
+
43
+ Changelog for `cleer`.
44
+ All notable changes to this project will be documented in this file.
45
+
46
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
47
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
48
+
49
+ <!--
50
+ ## [Unreleased] - YYYY-MM-DD
51
+
52
+ ### Added
53
+
54
+ ### Changed
55
+
56
+ ### Deprecated
57
+
58
+ ### Removed
59
+
60
+ ### Fixed
61
+
62
+ ### Security
63
+ -->
64
+
65
+ <!--
66
+ ## [Unreleased] - YYYY-MM-DD
67
+
68
+ ### Added
69
+
70
+ ### Changed
71
+
72
+ ### Deprecated
73
+
74
+ ### Removed
75
+
76
+ ### Fixed
77
+
78
+ ### Security
79
+ -->
80
+
81
+
82
+ ## [0.1.0a1] - 2024-02-18
83
+
84
+ - Initial stub
85
+
@@ -0,0 +1,3 @@
1
+ # cleer
2
+
3
+ Coming soon! Extensible python formatter with sane defaults.
@@ -0,0 +1,3 @@
1
+ [build-system]
2
+ requires = ["setuptools", "wheel"]
3
+ build-backend = "setuptools.build_meta"
@@ -0,0 +1,62 @@
1
+ [metadata]
2
+ name = cleer
3
+ version = attr: cleer.__version__
4
+ description = Extensible python formatter with sane defaults.
5
+ long_description = file: README.md, CHANGELOG.md
6
+ long_description_content_type = text/markdown
7
+ author = Brandon Temple Paul
8
+ author_email = btemplepgit@gmail.com
9
+ classifiers =
10
+ Development Status :: 3 - Alpha
11
+ License :: OSI Approved :: MIT License
12
+ Natural Language :: English
13
+ Operating System :: POSIX :: Linux
14
+ Operating System :: Unix
15
+ Programming Language :: Python :: 3
16
+ Programming Language :: Python :: 3 :: Only
17
+ Programming Language :: Python :: 3.8
18
+ Programming Language :: Python :: 3.9
19
+ Programming Language :: Python :: 3.10
20
+ Programming Language :: Python :: 3.11
21
+ Programming Language :: Python :: 3.12
22
+ Programming Language :: Python :: Implementation :: CPython
23
+ Topic :: Software Development :: Libraries :: Python Modules
24
+ Topic :: Internet
25
+ license = MIT
26
+ license_files =
27
+ LICENSE
28
+ keywords =
29
+ format
30
+ formatter
31
+ file
32
+ extend
33
+ custom
34
+ python_requires = >= 3.8
35
+
36
+ [options]
37
+ package_dir =
38
+ =src
39
+ packages = find:
40
+ install_requires =
41
+ loguru
42
+
43
+ [options.packages.find]
44
+ where = src
45
+ exclude =
46
+ tests
47
+
48
+ [options.extras_require]
49
+ dev =
50
+ build
51
+ coverage
52
+ nox
53
+ piccolo-theme
54
+ pytest
55
+ pytest-cov
56
+ sphinx
57
+ twine
58
+
59
+ [egg_info]
60
+ tag_build =
61
+ tag_date = 0
62
+
@@ -0,0 +1,12 @@
1
+
2
+ __version__ = "0.1.0a1"
3
+
4
+ __all__ = [
5
+ "Cleer"
6
+ ]
7
+
8
+ class Cleer:
9
+
10
+ def __init__(self):
11
+ pass
12
+
@@ -0,0 +1,85 @@
1
+ Metadata-Version: 2.1
2
+ Name: cleer
3
+ Version: 0.1.0a1
4
+ Summary: Extensible python formatter with sane defaults.
5
+ Author: Brandon Temple Paul
6
+ Author-email: btemplepgit@gmail.com
7
+ License: MIT
8
+ Keywords: format,formatter,file,extend,custom
9
+ Classifier: Development Status :: 3 - Alpha
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Natural Language :: English
12
+ Classifier: Operating System :: POSIX :: Linux
13
+ Classifier: Operating System :: Unix
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3 :: Only
16
+ Classifier: Programming Language :: Python :: 3.8
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: Implementation :: CPython
22
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
23
+ Classifier: Topic :: Internet
24
+ Description-Content-Type: text/markdown
25
+ License-File: LICENSE
26
+ Requires-Dist: loguru
27
+ Provides-Extra: dev
28
+ Requires-Dist: build; extra == "dev"
29
+ Requires-Dist: coverage; extra == "dev"
30
+ Requires-Dist: nox; extra == "dev"
31
+ Requires-Dist: piccolo-theme; extra == "dev"
32
+ Requires-Dist: pytest; extra == "dev"
33
+ Requires-Dist: pytest-cov; extra == "dev"
34
+ Requires-Dist: sphinx; extra == "dev"
35
+ Requires-Dist: twine; extra == "dev"
36
+
37
+ # cleer
38
+
39
+ Coming soon! Extensible python formatter with sane defaults.
40
+
41
+ # Changelog
42
+
43
+ Changelog for `cleer`.
44
+ All notable changes to this project will be documented in this file.
45
+
46
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
47
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
48
+
49
+ <!--
50
+ ## [Unreleased] - YYYY-MM-DD
51
+
52
+ ### Added
53
+
54
+ ### Changed
55
+
56
+ ### Deprecated
57
+
58
+ ### Removed
59
+
60
+ ### Fixed
61
+
62
+ ### Security
63
+ -->
64
+
65
+ <!--
66
+ ## [Unreleased] - YYYY-MM-DD
67
+
68
+ ### Added
69
+
70
+ ### Changed
71
+
72
+ ### Deprecated
73
+
74
+ ### Removed
75
+
76
+ ### Fixed
77
+
78
+ ### Security
79
+ -->
80
+
81
+
82
+ ## [0.1.0a1] - 2024-02-18
83
+
84
+ - Initial stub
85
+
@@ -0,0 +1,12 @@
1
+ CHANGELOG.md
2
+ LICENSE
3
+ MANIFEST.in
4
+ README.md
5
+ pyproject.toml
6
+ setup.cfg
7
+ src/cleer/__init__.py
8
+ src/cleer.egg-info/PKG-INFO
9
+ src/cleer.egg-info/SOURCES.txt
10
+ src/cleer.egg-info/dependency_links.txt
11
+ src/cleer.egg-info/requires.txt
12
+ src/cleer.egg-info/top_level.txt
@@ -0,0 +1,11 @@
1
+ loguru
2
+
3
+ [dev]
4
+ build
5
+ coverage
6
+ nox
7
+ piccolo-theme
8
+ pytest
9
+ pytest-cov
10
+ sphinx
11
+ twine
@@ -0,0 +1 @@
1
+ cleer