From fa99ebe5c885ac5cfde4c99537c52931dde89557 Mon Sep 17 00:00:00 2001 From: urialon Date: Fri, 28 Apr 2023 08:40:27 -0400 Subject: [PATCH] setup --- LICENSE | 2 +- setup.py | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/LICENSE b/LICENSE index f8afd41..149f1cd 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2019 Tianyi Zhang, Varsha Kishore, Felix Wu, Kilian Q. Weinberger, and Yoav Artzi. +Copyright (c) 2023 Shuyan Zhou, Uri Alon, Sumit Agarwal, and Graham Neubig. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/setup.py b/setup.py index fc22a91..58ed79c 100644 --- a/setup.py +++ b/setup.py @@ -4,14 +4,14 @@ setup( name="code_bert_score", version='0.3.5', - author="Tianyi Zhang*, Varsha Kishore*, Felix Wu*, Kilian Q. Weinberger, and Yoav Artzi", - author_email="tzhang@asapp.com", - description="PyTorch implementation of BERT score", + author="Shuyan Zhou, Uri Alon, Sumit Agarwal, and Graham Neubig", + author_email="urialon1@gmail.com", + description="PyTorch implementation of Code BERT score", long_description=open("README.md", "r", encoding='utf-8').read(), long_description_content_type="text/markdown", keywords='BERT NLP deep learning google metric', license='MIT', - url="https://github.com/Tiiiger/code_bert_score", + url="https://github.com/neulab/code-bert-score", packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), install_requires=['torch>=1.0.0', @@ -24,8 +24,8 @@ ], entry_points={ 'console_scripts': [ - "bert-score=code_bert_score_cli.score:main", - "bert-score-show=code_bert_score_cli.visualize:main", + "code-bert-score=code_bert_score_cli.score:main", + "code-bert-score-show=code_bert_score_cli.visualize:main", ] }, include_package_data=True,