@@ -7,21 +7,21 @@ authors = [
7
7
{
name =
" Caleb P. Burns" ,
email =
" [email protected] " },
8
8
]
9
9
classifiers = [
10
- " Development Status :: 4 - Beta" ,
11
- " Intended Audience :: Developers" ,
12
- " License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)" ,
13
- " Operating System :: OS Independent" ,
14
- " Programming Language :: Python" ,
15
- " Programming Language :: Python :: 3" ,
16
- " Programming Language :: Python :: 3.7" ,
17
- " Programming Language :: Python :: 3.8" ,
18
- " Programming Language :: Python :: 3.9" ,
19
- " Programming Language :: Python :: 3.10" ,
20
- " Programming Language :: Python :: 3.11" ,
21
- " Programming Language :: Python :: Implementation :: CPython" ,
22
- " Programming Language :: Python :: Implementation :: PyPy" ,
23
- " Topic :: Software Development :: Libraries :: Python Modules" ,
24
- " Topic :: Utilities" ,
10
+ " Development Status :: 4 - Beta" ,
11
+ " Intended Audience :: Developers" ,
12
+ " License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)" ,
13
+ " Operating System :: OS Independent" ,
14
+ " Programming Language :: Python" ,
15
+ " Programming Language :: Python :: 3" ,
16
+ " Programming Language :: Python :: 3.7" ,
17
+ " Programming Language :: Python :: 3.8" ,
18
+ " Programming Language :: Python :: 3.9" ,
19
+ " Programming Language :: Python :: 3.10" ,
20
+ " Programming Language :: Python :: 3.11" ,
21
+ " Programming Language :: Python :: Implementation :: CPython" ,
22
+ " Programming Language :: Python :: Implementation :: PyPy" ,
23
+ " Topic :: Software Development :: Libraries :: Python Modules" ,
24
+ " Topic :: Utilities" ,
25
25
]
26
26
description = " Utility library for gitignore style pattern matching of file paths."
27
27
dynamic = [" version" ]
@@ -34,3 +34,19 @@ requires-python = ">=3.7"
34
34
"Source Code" = " https://github.com/cpburnz/python-pathspec"
35
35
"Documentation" = " https://python-path-specification.readthedocs.io/en/latest/index.html"
36
36
"Issue Tracker" = " https://github.com/cpburnz/python-pathspec/issues"
37
+
38
+
39
+ [tool .flit .sdist ]
40
+ include = [
41
+ " *.cfg" ,
42
+ " *.in" ,
43
+ " *.ini" ,
44
+ " *.py" ,
45
+ " *.rst" ,
46
+ " LICENSE" ,
47
+ " doc/" ,
48
+ " tests/" ,
49
+ ]
50
+ exclude = [
51
+ " doc/build/" ,
52
+ ]
0 commit comments