diff options
author | 2012-02-03 14:45:32 +0100 | |
---|---|---|
committer | 2012-02-03 14:46:54 +0100 | |
commit | f01bc94a33d8644da65b5fa895c222e9ee057b50 (patch) | |
tree | 3bfc837901a54f97a30f1d24431d8322906de192 /pygithub3/__init__.py | |
parent | Pypi environment by setuptools (diff) | |
download | python-github3-f01bc94a33d8644da65b5fa895c222e9ee057b50.tar.xz python-github3-f01bc94a33d8644da65b5fa895c222e9ee057b50.zip |
Fix imports to new environment
Absolute imports as PEP8 tells
Diffstat (limited to 'pygithub3/__init__.py')
-rw-r--r-- | pygithub3/__init__.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pygithub3/__init__.py b/pygithub3/__init__.py new file mode 100644 index 0000000..7c48d06 --- /dev/null +++ b/pygithub3/__init__.py @@ -0,0 +1,8 @@ +#!/usr/bin/env python +# -*- encoding: utf-8 -*- + +__title__ = 'pygithub3' +__version__ = '0.1' +__author__ = 'David Medina' +__license__ = 'ISC' +__copyright__ = 'Copyright 2012 David Medina' |