Skip to content

Commit

Permalink
Use correct argument for license in setup
Browse files Browse the repository at this point in the history
  • Loading branch information
SpirinEgor committed Mar 1, 2021
1 parent e5cda76 commit 4457912
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,14 @@
with open("requirements.txt") as requirements_file:
install_requires = [line.strip() for line in requirements_file]

with open("LICENSE") as license_file:
license_txt = license_file.read()

setup_args = dict(
name="code2seq",
version=VERSION,
description="Set of pytorch modules and utils to train code2seq model",
long_description_content_type="text/markdown",
long_description=readme,
install_requires=install_requires,
license=license_txt,
license="MIT",
packages=find_packages(),
author="Egor Spirin",
author_email="spirin.egor@gmail.com",
Expand Down

0 comments on commit 4457912

Please # to comment.