[F] Properly include script resource
This commit is contained in:
@@ -0,0 +1 @@
|
||||
include hyfetch/scripts/*
|
||||
@@ -124,6 +124,7 @@ def create_config() -> Config:
|
||||
|
||||
def run():
|
||||
parser = argparse.ArgumentParser(description='neofetch with flags <3')
|
||||
parser.parse_args()
|
||||
# TODO: Param overwrite config
|
||||
config = check_config()
|
||||
run_neofetch(PRESETS.get(config.preset))
|
||||
|
||||
@@ -25,12 +25,13 @@ setup(
|
||||
"Programming Language :: Python :: 3.9",
|
||||
"Programming Language :: Python :: 3.10",
|
||||
],
|
||||
packages=find_packages(exclude=("tests",)),
|
||||
packages=['hyfetch'],
|
||||
package_data={'hyfetch': ['hyfetch/*']},
|
||||
include_package_data=True,
|
||||
install_requires=['hypy_utils==1.0.5'],
|
||||
entry_points={
|
||||
"console_scripts": [
|
||||
"hyfetch=hyfetch.hyfetch:main",
|
||||
"hyfetch=hyfetch.main:run",
|
||||
]
|
||||
},
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user