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 71d4023 commit 88b1a32Copy full SHA for 88b1a32
setup.py
@@ -1,12 +1,18 @@
1
from setuptools import setup, find_packages
2
3
-VERSION = "0.0.3"
+VERSION = "0.0.4"
4
5
with open("README.md") as readme_file:
6
readme = readme_file.read()
7
8
-with open("requirements.txt") as requirements_file:
9
- install_requires = [line.strip() for line in requirements_file]
+install_requires = [
+ "torch~=1.7.1",
10
+ "tqdm~=4.58.0",
11
+ "numpy~=1.20.1",
12
+ "pytorch-lightning==1.1.7",
13
+ "wandb~=0.10.20",
14
+ "hydra-core~=1.0.6",
15
+]
16
17
setup_args = dict(
18
name="code2seq",
0 commit comments