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
|
[metadata]
name = xopen
author = Marcel Martin et al.
author_email = mail@marcelm.net
url = https://github.com/pycompression/xopen/
description = Open compressed files transparently
long_description = file: README.rst
long_description_content_type = text/x-rst
license = MIT
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
[options]
python_requires = >=3.7
package_dir =
=src
packages = find:
install_requires =
isal>=1.0.0; platform.python_implementation == 'CPython' and (platform.machine == "x86_64" or platform.machine == "AMD64")
typing_extensions; python_version<'3.8'
[options.packages.find]
where = src
[options.package_data]
* = py.typed
[options.extras_require]
dev = pytest
zstd = zstandard<1
[egg_info]
tag_build =
tag_date = 0
|