Skip to content

Commit

Permalink
fix: imports
Browse files Browse the repository at this point in the history
  • Loading branch information
asafgardin committed Dec 18, 2023
1 parent 8940537 commit 3476a4b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
#!/usr/bin/python3

import os
import codecs

from setuptools import setup, find_packages
from ai21.version import VERSION

readme_path = os.path.abspath(os.path.dirname(__file__))

with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
with codecs.open(os.path.join(readme_path, "README.md"), encoding="utf-8") as fh:
long_description = "\\n" + fh.read()


setup(
name="ai21",
version=VERSION,
Expand Down

0 comments on commit 3476a4b

Please sign in to comment.