-
Notifications
You must be signed in to change notification settings - Fork 39
/
setup.cfg
36 lines (33 loc) · 1.15 KB
/
setup.cfg
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
[metadata]
author = Caleb P. Burns
author_email = [email protected]
classifiers =
Development Status :: 4 - Beta
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.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
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._meta.__version__
[options]
packages = find:
python_requires = >=3.8
setup_requires = setuptools>=40.8.0
test_suite = tests
[options.packages.find]
include = pathspec, pathspec.*