File tree Expand file tree Collapse file tree 2 files changed +27
-6
lines changed Expand file tree Collapse file tree 2 files changed +27
-6
lines changed Original file line number Diff line number Diff line change 1
- include LICENSE
2
- include MANIFEST.in
1
+ # ==================== Files to include in the sdist ====================
2
+
3
+ # config for project's main runnable dev automations
3
4
include Makefile
4
- include README*
5
+
6
+ # Minimum Build System spec (PEP-517/PEP-518)
5
7
include pyproject.toml
8
+
9
+ # This file, to specify what goes into the source distribution
10
+ include MANIFEST.in
11
+
12
+ # Setup for building the project's bdist
6
13
include setup.cfg
14
+
15
+ # Requirements for running the project
7
16
include requirements.in
17
+
18
+ # Requirements for running the build system and other dev tools
8
19
include requirements-devtime.in
20
+
21
+ # Project Files
22
+ include LICENSE
23
+ include README*
24
+
25
+ # Typed marker (PEP-561)
26
+ recursive-include src/ py.typed
27
+
28
+ # Include test configuration
29
+ include test/conftest.py
30
+
31
+ prune .venv
Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ keywords =
40
40
match
41
41
42
42
[options]
43
+ include_package_data = True
43
44
package_dir =
44
45
= src
45
46
packages = find:
@@ -48,9 +49,6 @@ python_requires = >=3.6
48
49
[options.packages.find]
49
50
where = src
50
51
51
- [options.package_data]
52
- * = py.typed, VERSION
53
-
54
52
[coverage:report]
55
53
exclude_lines =
56
54
pragma: no cover
You can’t perform that action at this time.
0 commit comments