Skip to content

Commit

Permalink
Fix import bug in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gabegrand committed Nov 20, 2023
1 parent c32623f commit 14b13f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
from setuptools import setup
from setuptools import setup, find_packages

setup(
name='hfppl',
version='0.1.0',
version='0.1.0',
description='Probabilistic programming with HuggingFace Transformer models',
url='https://github.com/probcomp/hfppl',
author='Alex Lew',
author_email='[email protected]',
license='MIT',
packages=setuptools.find_packages(),
packages=find_packages(),
install_requires=['torch',
'numpy',
'transformers==4.30',
Expand Down

0 comments on commit 14b13f1

Please sign in to comment.