bare-script 5.1.1__tar.gz → 5.1.2__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.
Files changed (24) hide show
  1. {bare_script-5.1.1/src/bare_script.egg-info → bare_script-5.1.2}/PKG-INFO +10 -8
  2. bare_script-5.1.2/pyproject.toml +43 -0
  3. bare_script-5.1.2/setup.cfg +4 -0
  4. {bare_script-5.1.1 → bare_script-5.1.2/src/bare_script.egg-info}/PKG-INFO +10 -8
  5. {bare_script-5.1.1 → bare_script-5.1.2}/src/bare_script.egg-info/SOURCES.txt +0 -1
  6. bare_script-5.1.1/pyproject.toml +0 -2
  7. bare_script-5.1.1/setup.cfg +0 -38
  8. {bare_script-5.1.1 → bare_script-5.1.2}/LICENSE +0 -0
  9. {bare_script-5.1.1 → bare_script-5.1.2}/README.md +0 -0
  10. {bare_script-5.1.1 → bare_script-5.1.2}/setup.py +0 -0
  11. {bare_script-5.1.1 → bare_script-5.1.2}/src/bare_script/__init__.py +0 -0
  12. {bare_script-5.1.1 → bare_script-5.1.2}/src/bare_script/__main__.py +0 -0
  13. {bare_script-5.1.1 → bare_script-5.1.2}/src/bare_script/bare.py +0 -0
  14. {bare_script-5.1.1 → bare_script-5.1.2}/src/bare_script/include.py +0 -0
  15. {bare_script-5.1.1 → bare_script-5.1.2}/src/bare_script/include_source.py +0 -0
  16. {bare_script-5.1.1 → bare_script-5.1.2}/src/bare_script/library.py +0 -0
  17. {bare_script-5.1.1 → bare_script-5.1.2}/src/bare_script/options.py +0 -0
  18. {bare_script-5.1.1 → bare_script-5.1.2}/src/bare_script/runtime.py +0 -0
  19. {bare_script-5.1.1 → bare_script-5.1.2}/src/bare_script/runtime_c.c +0 -0
  20. {bare_script-5.1.1 → bare_script-5.1.2}/src/bare_script/value.py +0 -0
  21. {bare_script-5.1.1 → bare_script-5.1.2}/src/bare_script.egg-info/dependency_links.txt +0 -0
  22. {bare_script-5.1.1 → bare_script-5.1.2}/src/bare_script.egg-info/entry_points.txt +0 -0
  23. {bare_script-5.1.1 → bare_script-5.1.2}/src/bare_script.egg-info/requires.txt +0 -0
  24. {bare_script-5.1.1 → bare_script-5.1.2}/src/bare_script.egg-info/top_level.txt +0 -0
@@ -1,21 +1,23 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bare-script
3
- Version: 5.1.1
4
- Summary: bare-script
5
- Home-page: https://github.com/craigahobbs/bare-script
6
- Author: Craig A. Hobbs
7
- Author-email: craigahobbs@gmail.com
8
- License: MIT
9
- Keywords: bare-script
3
+ Version: 5.1.2
4
+ Summary: BareScript; a lightweight scripting and expression language
5
+ Author-email: "Craig A. Hobbs" <craigahobbs@gmail.com>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/craigahobbs/bare-script-py
8
+ Keywords: expression,language,script
10
9
  Classifier: Development Status :: 5 - Production/Stable
10
+ Classifier: Environment :: Console
11
11
  Classifier: Intended Audience :: Developers
12
12
  Classifier: Operating System :: OS Independent
13
- Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3
14
14
  Classifier: Programming Language :: Python :: 3.11
15
15
  Classifier: Programming Language :: Python :: 3.12
16
16
  Classifier: Programming Language :: Python :: 3.13
17
17
  Classifier: Programming Language :: Python :: 3.14
18
+ Classifier: Programming Language :: Python :: 3.15
18
19
  Classifier: Topic :: Software Development :: Interpreters
20
+ Classifier: Topic :: Software Development :: Libraries
19
21
  Classifier: Topic :: Utilities
20
22
  Description-Content-Type: text/markdown
21
23
  License-File: LICENSE
@@ -0,0 +1,43 @@
1
+ [build-system]
2
+ requires = ["setuptools"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "bare-script"
7
+ version = "5.1.2"
8
+ description = "BareScript; a lightweight scripting and expression language"
9
+ readme = "README.md"
10
+ license = "MIT"
11
+ keywords = ["expression", "language", "script"]
12
+ authors = [
13
+ {name = "Craig A. Hobbs", email = "craigahobbs@gmail.com"}
14
+ ]
15
+ classifiers = [
16
+ "Development Status :: 5 - Production/Stable",
17
+ "Environment :: Console",
18
+ "Intended Audience :: Developers",
19
+ "Operating System :: OS Independent",
20
+ "Programming Language :: Python :: 3",
21
+ "Programming Language :: Python :: 3.11",
22
+ "Programming Language :: Python :: 3.12",
23
+ "Programming Language :: Python :: 3.13",
24
+ "Programming Language :: Python :: 3.14",
25
+ "Programming Language :: Python :: 3.15",
26
+ "Topic :: Software Development :: Interpreters",
27
+ "Topic :: Software Development :: Libraries",
28
+ "Topic :: Utilities"
29
+ ]
30
+ dependencies = [
31
+ "urllib3 >= 2.5.0"
32
+ ]
33
+
34
+ [project.urls]
35
+ Homepage = "https://github.com/craigahobbs/bare-script-py"
36
+
37
+ [project.scripts]
38
+ bare = "bare_script.bare:main"
39
+
40
+ [tool.setuptools]
41
+ include-package-data = false
42
+ package-dir = {"" = "src"}
43
+ packages = ["bare_script"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -1,21 +1,23 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bare-script
3
- Version: 5.1.1
4
- Summary: bare-script
5
- Home-page: https://github.com/craigahobbs/bare-script
6
- Author: Craig A. Hobbs
7
- Author-email: craigahobbs@gmail.com
8
- License: MIT
9
- Keywords: bare-script
3
+ Version: 5.1.2
4
+ Summary: BareScript; a lightweight scripting and expression language
5
+ Author-email: "Craig A. Hobbs" <craigahobbs@gmail.com>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/craigahobbs/bare-script-py
8
+ Keywords: expression,language,script
10
9
  Classifier: Development Status :: 5 - Production/Stable
10
+ Classifier: Environment :: Console
11
11
  Classifier: Intended Audience :: Developers
12
12
  Classifier: Operating System :: OS Independent
13
- Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3
14
14
  Classifier: Programming Language :: Python :: 3.11
15
15
  Classifier: Programming Language :: Python :: 3.12
16
16
  Classifier: Programming Language :: Python :: 3.13
17
17
  Classifier: Programming Language :: Python :: 3.14
18
+ Classifier: Programming Language :: Python :: 3.15
18
19
  Classifier: Topic :: Software Development :: Interpreters
20
+ Classifier: Topic :: Software Development :: Libraries
19
21
  Classifier: Topic :: Utilities
20
22
  Description-Content-Type: text/markdown
21
23
  License-File: LICENSE
@@ -1,7 +1,6 @@
1
1
  LICENSE
2
2
  README.md
3
3
  pyproject.toml
4
- setup.cfg
5
4
  setup.py
6
5
  src/bare_script/__init__.py
7
6
  src/bare_script/__main__.py
@@ -1,2 +0,0 @@
1
- [build-system]
2
- requires = ["setuptools", "wheel"]
@@ -1,38 +0,0 @@
1
- [metadata]
2
- name = bare-script
3
- version = 5.1.1
4
- url = https://github.com/craigahobbs/bare-script
5
- author = Craig A. Hobbs
6
- author_email = craigahobbs@gmail.com
7
- license = MIT
8
- description = bare-script
9
- long_description = file:README.md
10
- long_description_content_type = text/markdown
11
- keywords = bare-script
12
- classifiers =
13
- Development Status :: 5 - Production/Stable
14
- Intended Audience :: Developers
15
- Operating System :: OS Independent
16
- Programming Language :: Python :: 3.10
17
- Programming Language :: Python :: 3.11
18
- Programming Language :: Python :: 3.12
19
- Programming Language :: Python :: 3.13
20
- Programming Language :: Python :: 3.14
21
- Topic :: Software Development :: Interpreters
22
- Topic :: Utilities
23
-
24
- [options]
25
- packages = bare_script
26
- package_dir =
27
- = src
28
- install_requires =
29
- urllib3 >= 2.5.0
30
-
31
- [options.entry_points]
32
- console_scripts =
33
- bare = bare_script.bare:main
34
-
35
- [egg_info]
36
- tag_build =
37
- tag_date = 0
38
-
File without changes
File without changes
File without changes