aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2020-09-27 23:33:53 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2020-09-27 23:33:53 -0400
commitb0a757c9621bf094f1c522da04c979f67533e28d (patch)
treea40f390b37146099d00d4503f26d53970133e2f4 /setup.py
parent7f7c8f952d9b1408d22ffd69bce37d05b7c85f00 (diff)
downloadpackage_info-master.tar.gz
Create entry_pointHEADmaster
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py9
1 files changed, 9 insertions, 0 deletions
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",
+ ],
+ },
)