Skip to content

Commit 850b815

Browse files
committed
add find_packages in setup.py
1 parent bb1ea79 commit 850b815

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
"""setup.py for hessian_eigenthings"""
22

3-
from setuptools import setup
3+
from setuptools import setup, find_packages
44

55
install_requires = [
66
'numpy>=0.14',
77
'torch>=0.4'
88
]
99

10-
setup(name="hessian_eigenthings", author="Noah Golmant", install_requires=install_requires)
10+
setup(name="hessian_eigenthings",
11+
author="Noah Golmant",
12+
install_requires=install_requires,
13+
packages=find_packages(),
14+
description='Eigendecomposition of model Hessians in PyTorch!')

0 commit comments

Comments
 (0)