[F] Fix subpackage installing

https://github.com/dylanaraps/neofetch/issues/2257
This commit is contained in:
Hykilpikonna 2022-12-11 21:35:20 -05:00
parent bc2a8dbf3c
commit 51b8bd61e0
No known key found for this signature in database
GPG key ID: 256CD01A41D7FA26

View file

@ -1,7 +1,7 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
import pathlib import pathlib
from setuptools import setup from setuptools import setup, find_packages
import hyfetch.constants import hyfetch.constants
@ -30,7 +30,7 @@ setup(
"Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.10",
], ],
packages=['hyfetch'], packages=find_packages(),
package_data={'hyfetch': ['hyfetch/*']}, package_data={'hyfetch': ['hyfetch/*']},
include_package_data=True, include_package_data=True,
install_requires=[ install_requires=[