Skip to content

Commit 4457912

Browse files
committed
Use correct argument for license in setup
1 parent e5cda76 commit 4457912

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,14 @@
88
with open("requirements.txt") as requirements_file:
99
install_requires = [line.strip() for line in requirements_file]
1010

11-
with open("LICENSE") as license_file:
12-
license_txt = license_file.read()
13-
1411
setup_args = dict(
1512
name="code2seq",
1613
version=VERSION,
1714
description="Set of pytorch modules and utils to train code2seq model",
1815
long_description_content_type="text/markdown",
1916
long_description=readme,
2017
install_requires=install_requires,
21-
license=license_txt,
18+
license="MIT",
2219
packages=find_packages(),
2320
author="Egor Spirin",
2421
author_email="[email protected]",

0 commit comments

Comments
 (0)