Skip to content

Commit

Permalink
Bump Project Version
Browse files Browse the repository at this point in the history
  • Loading branch information
shaun-scale committed Feb 17, 2021
1 parent 121ad8f commit e58aad2
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions build/lib/scaleapi/projects.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
class Project(object):
def __init__(self, param_dict, client):
self.param_dict = param_dict
self.name = param_dict['name']
self.client = client

def __hash__(self):
return hash(self.name)

def __str__(self):
return 'Project(name=%s)' % self.name

def __repr__(self):
return 'Project(%s)' % self.param_dict
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
setup(
name='scaleapi',
packages=['scaleapi'],
version='0.4.0',
version='1.0.0',
description='The official Python client library for Scale AI, the Data Platform for AI',
author='Scale AI',
author_email='[email protected]',
Expand Down

0 comments on commit e58aad2

Please sign in to comment.