Skip to content

Commit 31cdc15

Browse files
committed
fix some importing issues
1 parent be15e31 commit 31cdc15

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
setup(
1212
name = 'simplegist',
1313
packages = ['simplegist'],
14-
version = '0.1',
14+
version = '0.2',
1515
install_requires=required,
1616
description = 'Python wrapper for Gist ',
1717
long_description=open('README.rst').read(),
1818
author = 'Varun Malhotra',
1919
author_email = '[email protected]',
2020
url = 'https://github.com/softvar/gist',
21-
download_url = 'https://github.com/softvar/GistApi-Wrapper-python/tarball/0.1',
21+
download_url = 'https://github.com/softvar/GistApi-Wrapper-python/tarball/0.2',
2222
keywords = ['gist', 'github', 'API'],
2323
license = 'MIT',
2424
classifiers = (

simplegist/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from simplegist import *

simplegist/simplegist.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
BASE_URL = 'https://api.github.com'
1111

12-
class Gist:
12+
class Simplegist:
1313
"""
1414
Gist Base Class
1515

0 commit comments

Comments
 (0)