Skip to content

Commit

Permalink
added setup.py for the project to install all packages for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard5678 committed Dec 7, 2024
1 parent 247e00d commit b45721e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# setup.py

from setuptools import setup, find_packages

setup(
name='transformers',
version='0.1',
packages=find_packages(),
install_requires=[
'torch',
],
)

# python -m unittest discover -s tests

0 comments on commit b45721e

Please sign in to comment.