yamlstar 0.0.1__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.
File without changes
@@ -0,0 +1,2 @@
1
+ include ReadMe.md
2
+ include .long_description.md
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.1
2
+ Name: yamlstar
3
+ Version: 0.0.1
4
+ Summary: A cross-language, common API YAML reference framework
5
+ Home-page: https://github.com/ingydotnet/yamlstar
6
+ Author: Ingy döt Net
7
+ Author-email: ingy@ingy.net
8
+ License: MIT
9
+ Keywords: yaml,language
10
+ Platform: UNKNOWN
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.6
16
+ Classifier: Programming Language :: Python :: 3.7
17
+ Classifier: Programming Language :: Python :: 3.8
18
+ Classifier: Programming Language :: Python :: 3.9
19
+ Classifier: Programming Language :: Python :: 3 :: Only
20
+ Requires-Python: >=3.6, <4
21
+ Description-Content-Type: text/markdown
22
+
23
+ UNKNOWN
24
+
@@ -0,0 +1,28 @@
1
+ yamlstar
2
+ ========
3
+
4
+ A cross-language, common API YAML reference framework
5
+
6
+ ## Synopsis
7
+ ```
8
+ from yamlstar import YAML
9
+ yaml = YAML(schemaFile('my-schema.yes'))
10
+ data = yaml.load(string)
11
+ string = yaml.dump(data)
12
+ ```
13
+
14
+ ## Status
15
+
16
+ This module is *very* **ALPHA**.
17
+
18
+ ## Description
19
+
20
+ YAMLStar is a cross-language, common API YAML reference framework.
21
+
22
+ ## License & Copyright
23
+
24
+ This project is licensed under the terms of the `MIT` license.
25
+ See [LICENSE](https://github.com/yaml/pyyaml-future/blob/main/LICENSE) for more
26
+ details.
27
+
28
+ Copyright 2023 Ingy döt Net <ingy@ingy.net>
@@ -0,0 +1 @@
1
+ pass
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.1
2
+ Name: yamlstar
3
+ Version: 0.0.1
4
+ Summary: A cross-language, common API YAML reference framework
5
+ Home-page: https://github.com/ingydotnet/yamlstar
6
+ Author: Ingy döt Net
7
+ Author-email: ingy@ingy.net
8
+ License: MIT
9
+ Keywords: yaml,language
10
+ Platform: UNKNOWN
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.6
16
+ Classifier: Programming Language :: Python :: 3.7
17
+ Classifier: Programming Language :: Python :: 3.8
18
+ Classifier: Programming Language :: Python :: 3.9
19
+ Classifier: Programming Language :: Python :: 3 :: Only
20
+ Requires-Python: >=3.6, <4
21
+ Description-Content-Type: text/markdown
22
+
23
+ UNKNOWN
24
+
@@ -0,0 +1,12 @@
1
+ .long_description.md
2
+ MANIFEST.in
3
+ ReadMe.md
4
+ setup.cfg
5
+ setup.py
6
+ lib/yamlstar/__init__.py
7
+ lib/yamlstar.egg-info/PKG-INFO
8
+ lib/yamlstar.egg-info/SOURCES.txt
9
+ lib/yamlstar.egg-info/dependency_links.txt
10
+ lib/yamlstar.egg-info/requires.txt
11
+ lib/yamlstar.egg-info/top_level.txt
12
+ test/test.py
@@ -0,0 +1 @@
1
+ pyyaml
@@ -0,0 +1 @@
1
+ yamlstar
@@ -0,0 +1,7 @@
1
+ [metadata]
2
+ description-file = ReadMe.md
3
+
4
+ [egg_info]
5
+ tag_build =
6
+ tag_date = 0
7
+
@@ -0,0 +1,48 @@
1
+ version = '0.0.1'
2
+
3
+ from setuptools import setup
4
+ import pathlib
5
+
6
+ root = pathlib.Path(__file__).parent.resolve()
7
+
8
+ long_description = \
9
+ (root / '.long_description.md') \
10
+ .read_text(encoding='utf-8')
11
+
12
+ setup(
13
+ name = 'yamlstar',
14
+ version = version,
15
+ description = 'A cross-language, common API YAML reference framework',
16
+ license = 'MIT',
17
+ url = 'https://github.com/ingydotnet/yamlstar',
18
+
19
+ author = 'Ingy döt Net',
20
+ author_email = 'ingy@ingy.net',
21
+
22
+ packages = ['yamlstar'],
23
+ package_dir = {'': 'lib'},
24
+
25
+ python_requires = '>=3.6, <4',
26
+ install_requires = [
27
+ 'pyyaml',
28
+ ],
29
+ setup_requires = [
30
+ 'wheel',
31
+ ],
32
+
33
+ keywords = ['yaml', 'language'],
34
+ classifiers = [
35
+ 'Development Status :: 3 - Alpha',
36
+ 'Intended Audience :: Developers',
37
+ 'License :: OSI Approved :: MIT License',
38
+ 'Programming Language :: Python :: 3',
39
+ 'Programming Language :: Python :: 3.6',
40
+ 'Programming Language :: Python :: 3.7',
41
+ 'Programming Language :: Python :: 3.8',
42
+ 'Programming Language :: Python :: 3.9',
43
+ 'Programming Language :: Python :: 3 :: Only',
44
+ ],
45
+
46
+ long_description = long_description,
47
+ long_description_content_type = 'text/markdown',
48
+ )
@@ -0,0 +1,8 @@
1
+ import pytest
2
+
3
+ def modules_compile():
4
+ import yamlstar
5
+ return "ok"
6
+
7
+ def test_modules_compile():
8
+ assert modules_compile() == "ok"