Skip to content

Commit 5811b67

Browse files
Paul Hewletteccles
authored andcommitted
Entrypoint code missing in wheel package
Solution: Explicitly list all cmds subpackages in setup.cfg Signed-off-by: Paul Hewlett <[email protected]>
1 parent cebba7e commit 5811b67

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

setup.cfg

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[pycodestyle]
2-
ignore = E128, E203, E225, E265, E266, E402, E501, E713, E722, E741, W503, W504,
2+
ignore = E128, E203, E225, E265, E266, E402, E501, E713, E722, E741, W503
33
statistics = True
44
max-line-length = 88
55

@@ -12,7 +12,7 @@ long_description = file: README.rst
1212
long_description_content_type = text/x-rst
1313
url = https://github.com/jitsuin-inc/archivist-python
1414
license = MIT
15-
license_file = LICENSE
15+
license_files = LICENSE
1616

1717
classifiers =
1818
Development Status :: 3 - Alpha
@@ -30,7 +30,12 @@ project_urls =
3030

3131
[options]
3232
install_requires = file: requirements.txt
33-
packages = archivist
33+
packages =
34+
archivist
35+
archivist.cmds
36+
archivist.cmds.runner
37+
archivist.cmds.template
38+
3439
platforms = any
3540
python_requires = >=3.7
3641
setup_requires = setuptools-git-versioning

0 commit comments

Comments
 (0)