# HG changeset patch # User Tyler G. Hicks-Wright # Date 1333564159 14400 # Wed Apr 04 14:29:19 2012 -0400 # Node ID bae916ac9892d1128683ccab061e230ec086f30a # Parent d07ecf4d2cfbfed8ec0bd14e291cc93bfbce5d15 Add __module__ for docs. diff --git a/.hgignore b/.hgignore --- a/.hgignore +++ b/.hgignore @@ -3,3 +3,4 @@ *.pyo dist/* build/* +_build/* diff --git a/api_class.mustache b/api_class.mustache --- a/api_class.mustache +++ b/api_class.mustache @@ -2,6 +2,8 @@ import requests class {{class_name}}(object): + __module__ = 'trello' + def __init__(self, apikey, token=None): self._apikey = apikey self._token = token diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ author_email='customer-service@fogcreek.com', maintainer='Fog Creek Software', maintainer_email='customer-service@fogcreek.com', - url='https://developers.kilnhg.com/Repo/Trello/Group/TrelloPy', + url='https://trello.com/', download_url='https://developers.kilnhg.com/Repo/Trello/Group/TrelloPy', install_requires=['requests>=0.9.1'], requires='requests', diff --git a/trello/actions.py b/trello/actions.py --- a/trello/actions.py +++ b/trello/actions.py @@ -2,6 +2,8 @@ import requests class Actions(object): + __module__ = 'trello' + def __init__(self, apikey, token=None): self._apikey = apikey self._token = token diff --git a/trello/boards.py b/trello/boards.py --- a/trello/boards.py +++ b/trello/boards.py @@ -2,6 +2,8 @@ import requests class Boards(object): + __module__ = 'trello' + def __init__(self, apikey, token=None): self._apikey = apikey self._token = token diff --git a/trello/cards.py b/trello/cards.py --- a/trello/cards.py +++ b/trello/cards.py @@ -2,6 +2,8 @@ import requests class Cards(object): + __module__ = 'trello' + def __init__(self, apikey, token=None): self._apikey = apikey self._token = token diff --git a/trello/checklists.py b/trello/checklists.py --- a/trello/checklists.py +++ b/trello/checklists.py @@ -2,6 +2,8 @@ import requests class Checklists(object): + __module__ = 'trello' + def __init__(self, apikey, token=None): self._apikey = apikey self._token = token diff --git a/trello/lists.py b/trello/lists.py --- a/trello/lists.py +++ b/trello/lists.py @@ -2,6 +2,8 @@ import requests class Lists(object): + __module__ = 'trello' + def __init__(self, apikey, token=None): self._apikey = apikey self._token = token diff --git a/trello/members.py b/trello/members.py --- a/trello/members.py +++ b/trello/members.py @@ -2,6 +2,8 @@ import requests class Members(object): + __module__ = 'trello' + def __init__(self, apikey, token=None): self._apikey = apikey self._token = token diff --git a/trello/notifications.py b/trello/notifications.py --- a/trello/notifications.py +++ b/trello/notifications.py @@ -2,6 +2,8 @@ import requests class Notifications(object): + __module__ = 'trello' + def __init__(self, apikey, token=None): self._apikey = apikey self._token = token diff --git a/trello/organizations.py b/trello/organizations.py --- a/trello/organizations.py +++ b/trello/organizations.py @@ -2,6 +2,8 @@ import requests class Organizations(object): + __module__ = 'trello' + def __init__(self, apikey, token=None): self._apikey = apikey self._token = token diff --git a/trello/tokens.py b/trello/tokens.py --- a/trello/tokens.py +++ b/trello/tokens.py @@ -2,6 +2,8 @@ import requests class Tokens(object): + __module__ = 'trello' + def __init__(self, apikey, token=None): self._apikey = apikey self._token = token diff --git a/trello/types.py b/trello/types.py --- a/trello/types.py +++ b/trello/types.py @@ -2,6 +2,8 @@ import requests class Types(object): + __module__ = 'trello' + def __init__(self, apikey, token=None): self._apikey = apikey self._token = token