From b0a757c9621bf094f1c522da04c979f67533e28d Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Sun, 27 Sep 2020 23:33:53 -0400 Subject: Create entry_point --- setup.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'setup.py') diff --git a/setup.py b/setup.py index e85760b..78f5839 100644 --- a/setup.py +++ b/setup.py @@ -10,5 +10,14 @@ setup( description="Get PKG-INFO metadata as JSON", author="Joseph Hunkeler", author_email="jhunk@stsci.edu", + license="BSD", + project_urls={ + "Source": "https://github.com/astroconda/package_info", + }, packages=find_packages(), + entry_points={ + "console_scripts": [ + "package_info=package_info.cli.__main__:main", + ], + }, ) -- cgit