summaryrefslogtreecommitdiff
path: root/__init__.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2019-07-25 23:29:34 +0200
committerAnthon van der Neut <anthon@mnt.org>2019-07-25 23:29:34 +0200
commit7d50ad630dc3c4efff391008f3cd3cdd250cbacd (patch)
tree278e918166fc42fcf2dad4e5d639eb539e1598e6 /__init__.py
parent83b2bbba61d2ada9911dc1d07a121b141c6857ef (diff)
downloadruamel.yaml-7d50ad630dc3c4efff391008f3cd3cdd250cbacd.tar.gz
split off C library into separate package0.16.0
Diffstat (limited to '__init__.py')
-rw-r--r--__init__.py36
1 files changed, 5 insertions, 31 deletions
diff --git a/__init__.py b/__init__.py
index 48d9a03..33e1d63 100644
--- a/__init__.py
+++ b/__init__.py
@@ -7,8 +7,8 @@ if False: # MYPY
_package_data = dict(
full_package_name='ruamel.yaml',
- version_info=(0, 15, 100),
- __version__='0.15.100',
+ version_info=(0, 16, 0),
+ __version__='0.16.0',
author='Anthon van der Neut',
author_email='a.van.der.neut@ruamel.eu',
description='ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order', # NOQA
@@ -16,31 +16,9 @@ _package_data = dict(
since=2014,
extras_require={':platform_python_implementation=="CPython" and python_version<="2.7"': [
'ruamel.ordereddict',
+ ], ':platform_python_implementation=="CPython" and python_version<"3.8"': [
+ 'ruamel.yaml.clib',
], 'jinja2': ['ruamel.yaml.jinja2>=0.2'], 'docs': ['ryd']},
- ext_modules=[
- dict(
- name='_ruamel_yaml',
- src=[
- 'ext/_ruamel_yaml.c',
- 'ext/api.c',
- 'ext/writer.c',
- 'ext/dumper.c',
- 'ext/loader.c',
- 'ext/reader.c',
- 'ext/scanner.c',
- 'ext/parser.c',
- 'ext/emitter.c',
- ],
- lib=[],
- test="""
- int main(int argc, char* argv[])
- {
- /* prevent warning */
- return 0;
- }
- """,
- ),
- ],
# NOQA
# test='#include "ext/yaml.h"\n\nint main(int argc, char* argv[])\n{\nyaml_parser_t parser;\nparser = parser; /* prevent warning */\nreturn 0;\n}\n', # NOQA
classifiers=[
@@ -56,11 +34,6 @@ _package_data = dict(
'Typing :: Typed',
],
keywords='yaml 1.2 parser round-trip preserve quotes order config',
- wheels=dict(
- windows='appveyor',
- linux='libyaml-devel',
- macos='builder@macos',
- ),
read_the_docs='yaml',
supported=[(2, 7), (3, 5)], # minimum
tox=dict(
@@ -68,6 +41,7 @@ _package_data = dict(
deps='ruamel.std.pathlib',
fl8excl='_test/lib',
),
+ universal=True,
rtfd='yaml',
) # type: Dict[Any, Any]