Skip to content

Commit

Permalink
Merge pull request #3 from kazukiosawa/fix-setup
Browse files Browse the repository at this point in the history
Add packages option to setup
  • Loading branch information
kazukiosawa authored Jun 24, 2021
2 parents b72ad51 + 7368771 commit 8f79fe3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import find_packages, setup

with open('requirements.txt') as f:
requirements = f.read().splitlines()
Expand All @@ -8,5 +8,6 @@
version='0.0.1',
description='ASDL: Automatic Second-order Differentiation (for Fisher, Gradient covariance, Hessian, Jacobian, and Kernel) Library',
install_requires=requirements,
packages=find_packages(include=['asdfghjkl', 'asdfghjkl.*']),
python_requires='>=3.6'
)

0 comments on commit 8f79fe3

Please sign in to comment.