Skip to content

Commit 9ad260f

Browse files
committed
Include missing files in sdist
1 parent f81afa7 commit 9ad260f

File tree

1 file changed

+31
-15
lines changed

1 file changed

+31
-15
lines changed

pyproject.toml

+31-15
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,21 @@ authors = [
77
{name = "Caleb P. Burns", email = "[email protected]"},
88
]
99
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",
2525
]
2626
description = "Utility library for gitignore style pattern matching of file paths."
2727
dynamic = ["version"]
@@ -34,3 +34,19 @@ requires-python = ">=3.7"
3434
"Source Code" = "https://github.com/cpburnz/python-pathspec"
3535
"Documentation" = "https://python-path-specification.readthedocs.io/en/latest/index.html"
3636
"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

Comments
 (0)