|
14 | 14 | __author__ = 'Ian Cordasco' |
15 | 15 | __license__ = 'Modified BSD' |
16 | 16 | __copyright__ = 'Copyright 2012-2014 Ian Cordasco' |
17 | | -__version__ = '0.9.0' |
| 17 | +__version__ = '1.0.0' |
18 | 18 | __version_info__ = tuple(int(i) for i in __version__.split('.')) |
19 | 19 |
|
20 | | -from github3.api import * |
| 20 | +from github3.api import ( |
| 21 | + authorize, login, enterprise_login, emojis, gist, gitignore_template, |
| 22 | + create_gist, issue, markdown, octocat, organization, pull_request, |
| 23 | + followers_of, followed_by, public_gists, gists_by, repository_issues, |
| 24 | + gitignore_templates, all_repositories, all_users, all_events, |
| 25 | + organizations_with, repositories_by, starred_by, subscriptions_for, |
| 26 | + rate_limit, repository, search_code, search_repositories, search_users, |
| 27 | + user, zen |
| 28 | +) |
21 | 29 | from github3.github import GitHub, GitHubEnterprise, GitHubStatus |
22 | 30 | from github3.models import GitHubError |
23 | 31 |
|
24 | | -# flake8: noqa |
| 32 | +__all__ = ( |
| 33 | + 'GitHub', 'GitHubEnterprise', 'GitHubError', 'GitHubStatus', 'authorize', |
| 34 | + 'login', 'enterprise_login', 'emojis', 'gist', 'gitignore_template', |
| 35 | + 'create_gist', 'issue', 'markdown', 'octocat', 'organization', |
| 36 | + 'pull_request', 'followers_of', 'followed_by', 'public_gists', 'gists_by', |
| 37 | + 'repository_issues', 'gitignore_templates', 'all_repositories', |
| 38 | + 'all_users', 'all_events', 'organizations_with', 'repositories_by', |
| 39 | + 'starred_by', 'subscriptions_for', 'rate_limit', 'repository', |
| 40 | + 'search_code', 'search_repositories', 'search_users', 'user', 'zen', |
| 41 | +) |
0 commit comments