14 lines
497 B
Python
14 lines
497 B
Python
import setuptools
|
|
setuptools.setup(
|
|
scripts=['find_duplicate_files/find_duplicate_files.py'],
|
|
author="Antonio J. Delgado",
|
|
version='0.0.1',
|
|
name='find_duplicate_files',
|
|
author_email="",
|
|
url="",
|
|
description="Given two directories, find files in first directory that are present in the second by checking hashes",
|
|
long_description="README.md",
|
|
long_description_content_type="text/markdown",
|
|
license="GPLv3",
|
|
#keywords=["my", "script", "does", "things"]
|
|
)
|