[F] Fix subpackage installing
https://github.com/dylanaraps/neofetch/issues/2257
This commit is contained in:
parent
bc2a8dbf3c
commit
51b8bd61e0
1 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env python3
|
||||
import pathlib
|
||||
|
||||
from setuptools import setup
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
import hyfetch.constants
|
||||
|
||||
|
@ -30,7 +30,7 @@ setup(
|
|||
"Programming Language :: Python :: 3.9",
|
||||
"Programming Language :: Python :: 3.10",
|
||||
],
|
||||
packages=['hyfetch'],
|
||||
packages=find_packages(),
|
||||
package_data={'hyfetch': ['hyfetch/*']},
|
||||
include_package_data=True,
|
||||
install_requires=[
|
||||
|
|
Loading…
Reference in a new issue