mirror of
https://github.com/arsenetar/dupeguru.git
synced 2026-01-22 06:37:17 +00:00
Format all files with black correcting line length
This commit is contained in:
@@ -6,19 +6,19 @@ import importlib
|
||||
|
||||
from setuptools import setup, Extension
|
||||
|
||||
sys.path.insert(1, op.abspath('src'))
|
||||
sys.path.insert(1, op.abspath("src"))
|
||||
|
||||
from hscommon.build import move_all
|
||||
|
||||
exts = [
|
||||
Extension("_block", [op.join('modules', 'block.c'), op.join('modules', 'common.c')]),
|
||||
Extension("_cache", [op.join('modules', 'cache.c'), op.join('modules', 'common.c')]),
|
||||
Extension("_block_qt", [op.join('modules', 'block_qt.c')]),
|
||||
Extension("_block", [op.join("modules", "block.c"), op.join("modules", "common.c")]),
|
||||
Extension("_cache", [op.join("modules", "cache.c"), op.join("modules", "common.c")]),
|
||||
Extension("_block_qt", [op.join("modules", "block_qt.c")]),
|
||||
]
|
||||
setup(
|
||||
script_args = ['build_ext', '--inplace'],
|
||||
ext_modules = exts,
|
||||
script_args=["build_ext", "--inplace"],
|
||||
ext_modules=exts,
|
||||
)
|
||||
move_all('_block_qt*', op.join('src', 'qt', 'pe'))
|
||||
move_all('_cache*', op.join('src', 'core/pe'))
|
||||
move_all('_block*', op.join('src', 'core/pe'))
|
||||
move_all("_block_qt*", op.join("src", "qt", "pe"))
|
||||
move_all("_cache*", op.join("src", "core/pe"))
|
||||
move_all("_block*", op.join("src", "core/pe"))
|
||||
|
||||
Reference in New Issue
Block a user