1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
[metadata]
description = Modern high-performance serialization utilities for Python
url = https://github.com/explosion/srsly
author = Explosion
author_email = contact@explosion.ai
license = MIT
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Programming Language :: Cython
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Topic :: Scientific/Engineering
[options]
zip_safe = true
include_package_data = true
python_requires = >=3.9,<3.15
setup_requires =
cython>=0.29.1
install_requires =
catalogue>=2.0.3,<2.1.0
[options.entry_points]
# If spaCy is installed in the same environment as srsly, it will automatically
# have these readers available
spacy_readers =
srsly.read_json.v1 = srsly:read_json
srsly.read_jsonl.v1 = srsly:read_jsonl
srsly.read_yaml.v1 = srsly:read_yaml
srsly.read_msgpack.v1 = srsly:read_msgpack
[bdist_wheel]
universal = false
[sdist]
formats = gztar
[flake8]
ignore = E203, E266, E501, E731, W503, E741
max-line-length = 80
select = B,C,E,F,W,T4,B9
exclude =
srsly/__init__.py
srsly/msgpack/__init__.py
srsly/cloudpickle/__init__.py
[mypy]
ignore_missing_imports = True
[mypy-srsly.cloudpickle.*]
ignore_errors=True
|