Skip to content

Commit e0d8524

Browse files
committed
minor updates
1 parent ed43c2e commit e0d8524

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.gitignore

+3-3
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,10 @@ nohup.out
109109

110110
#others
111111
notebooks/*
112-
LICENSE-MIT
112+
#LICENSE-MIT
113113
#pyproject.toml
114114
#tox.ini
115-
tests/*
116-
.coveragerc
115+
#tests/*
116+
#.coveragerc
117117
#MANIFEST.in
118118
#setup.py

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[metadata]
22
name = 'NALU'
33
version = '0.0.1'
4-
description = ''
4+
description = 'basic implementation of Neural arithmetic and logic units as described in arxiv.org/pdf/1808.00508.pdf'
55
author = 'Bharath G.S'
66
author_email = '[email protected]'
77
license = 'MIT'
8-
url = 'https://github.com/_/NALU'
8+
url = 'https://github.com/bharathgs/NALU'
99

1010
[requires]
1111
python_version = ['3.6']

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
with open('README.md', 'r', encoding='utf-8') as f:
1414
readme = f.read()
1515

16-
REQUIRES = []
16+
REQUIRES = ['torch', 'numpy']
1717

1818
setup(
1919
name='NALU',

0 commit comments

Comments
 (0)