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]
author = Caleb P. Burns
author_email = cpburnz@gmail.com
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
Operating System :: OS Independent
Programming Language :: Python
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
Programming Language :: Python :: 3.14
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Utilities
description = Utility library for gitignore style pattern matching of file paths.
license = MPL 2.0
long_description = file: README-dist.rst
long_description_content_type = text/x-rst
name = pathspec
url = https://github.com/cpburnz/python-pathspec
version = attr: pathspec._version.__version__
[options]
packages = find:
python_requires = >=3.9
setup_requires = setuptools>=40.8.0
test_suite = tests
[options.packages.find]
include = pathspec, pathspec.*
|