We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5cda76 commit 4457912Copy full SHA for 4457912
setup.py
@@ -8,17 +8,14 @@
8
with open("requirements.txt") as requirements_file:
9
install_requires = [line.strip() for line in requirements_file]
10
11
-with open("LICENSE") as license_file:
12
- license_txt = license_file.read()
13
-
14
setup_args = dict(
15
name="code2seq",
16
version=VERSION,
17
description="Set of pytorch modules and utils to train code2seq model",
18
long_description_content_type="text/markdown",
19
long_description=readme,
20
install_requires=install_requires,
21
- license=license_txt,
+ license="MIT",
22
packages=find_packages(),
23
author="Egor Spirin",
24
author_email="[email protected]",
0 commit comments