diff --git a/setup.py b/setup.py index 6c3ccae..a04489a 100755 --- a/setup.py +++ b/setup.py @@ -83,7 +83,7 @@ def run(self): else: archive_name = self.url.rsplit("/", 1)[-1] - mkpath(self.download_dir, verbose=self.verbose, dry_run=self.dry_run) + mkpath(self.download_dir, verbose=self.verbose) log.info("downloading {}".format(self.url)) if not self.dry_run: @@ -252,6 +252,11 @@ def run(self): zip_safe=False, cmdclass=cmdclass, setup_requires=["setuptools_scm"], + entry_points={ + "console_scripts": [ + "opentype-sanitizer = ots.__main__:main", + ] + }, extras_require={"testing": ["pytest"]}, classifiers=[ "Development Status :: 5 - Production/Stable",