Skip to content

Commit

Permalink
fix: setup.py license
Browse files Browse the repository at this point in the history
  • Loading branch information
jossef committed Nov 16, 2021
1 parent 35d16e7 commit eadf8d0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "chainjacking",
"version": "v1.0.1",
"version": "v1.1.0",
"description": "A tool to scan your direct GitHub dependencies for Go and find ones susceptible to ChainJacking attack",
"homepage": "https://github.com/checkmarx/chainjacking",
"author_email": "lior.kaplan@checkmarx.com",
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -18,6 +18,7 @@
package_author_name = package_json['author_name']
package_author_email = package_json['author_email']
package_tags = package_json['tags']
package_license = package_json['license']

with open(path.join(SCRIPT_DIR, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
Expand All @@ -32,7 +33,7 @@
url=package_url,
author=package_author_name,
author_email=package_author_email,
license='ISC',
license=package_license,
test_suite='tests',
keywords=package_tags,
packages=[package_name],
Expand Down

0 comments on commit eadf8d0

Please sign in to comment.