Skip to content

Commit a7e2ffb

Browse files
committed
fix
1 parent 6eb1288 commit a7e2ffb

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

railib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version_info__ = (0, 6, 5)
15+
__version_info__ = (0, 6, 6)
1616
__version__ = ".".join(map(str, __version_info__))

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License
1616

17-
from setuptools import setup
17+
from setuptools import setup,find_packages
1818

1919
import railib
2020

@@ -33,11 +33,12 @@
3333
description="The RelationalAI Software Development Kit for Python",
3434
install_requires=[
3535
"ed25519==1.5",
36-
"pyarrow>=6.0.1"],
36+
"pyarrow>=6.0.1",
37+
"requests-toolbelt==0.9.1"],
3738
license="http://www.apache.org/licenses/LICENSE-2.0",
3839
long_description="Enables access to the RelationalAI REST APIs from Python",
3940
long_description_content_type="text/markdown",
4041
name="rai-sdk",
41-
packages=["railib"],
42+
packages=find_packages(),
4243
url="http://github.com/RelationalAI/rai-sdk-python",
4344
version=railib.__version__)

0 commit comments

Comments
 (0)