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.
- yamlstar-0.0.1/.long_description.md +0 -0
- yamlstar-0.0.1/MANIFEST.in +2 -0
- yamlstar-0.0.1/PKG-INFO +24 -0
- yamlstar-0.0.1/ReadMe.md +28 -0
- yamlstar-0.0.1/lib/yamlstar/__init__.py +1 -0
- yamlstar-0.0.1/lib/yamlstar.egg-info/PKG-INFO +24 -0
- yamlstar-0.0.1/lib/yamlstar.egg-info/SOURCES.txt +12 -0
- yamlstar-0.0.1/lib/yamlstar.egg-info/dependency_links.txt +1 -0
- yamlstar-0.0.1/lib/yamlstar.egg-info/requires.txt +1 -0
- yamlstar-0.0.1/lib/yamlstar.egg-info/top_level.txt +1 -0
- yamlstar-0.0.1/setup.cfg +7 -0
- yamlstar-0.0.1/setup.py +48 -0
- yamlstar-0.0.1/test/test.py +8 -0
|
File without changes
|
yamlstar-0.0.1/PKG-INFO
ADDED
|
@@ -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
|
+
|
yamlstar-0.0.1/ReadMe.md
ADDED
|
@@ -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
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pyyaml
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
yamlstar
|
yamlstar-0.0.1/setup.cfg
ADDED
yamlstar-0.0.1/setup.py
ADDED
|
@@ -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
|
+
)
|