Remove version.py for now

Was causing conflicts on pip install
This commit is contained in:
Mike Helmick 2013-04-29 12:04:22 -04:00
parent 32432bcac9
commit b6e820d792
5 changed files with 5 additions and 5 deletions

1
.gitignore vendored
View file

@ -34,3 +34,4 @@ nosetests.xml
.mr.developer.cfg .mr.developer.cfg
.project .project
.pydevproject .pydevproject
twython/.DS_Store

View file

@ -1,11 +1,10 @@
import os import os
import sys import sys
from twython.version import __version__
from setuptools import setup from setuptools import setup
__author__ = 'Ryan McGrath <ryan@venodesigns.net>' __author__ = 'Ryan McGrath <ryan@venodesigns.net>'
__version__ = '2.8.0'
packages = [ packages = [
'twython' 'twython'

View file

@ -18,6 +18,7 @@ Questions, comments? ryan@venodesigns.net
""" """
__author__ = 'Ryan McGrath <ryan@venodesigns.net>' __author__ = 'Ryan McGrath <ryan@venodesigns.net>'
__version__ = '2.8.0'
from .twython import Twython from .twython import Twython
from .exceptions import TwythonError, TwythonRateLimitError, TwythonAuthError from .exceptions import TwythonError, TwythonRateLimitError, TwythonAuthError

View file

@ -4,11 +4,11 @@ import warnings
import requests import requests
from requests_oauthlib import OAuth1 from requests_oauthlib import OAuth1
from . import __version__
from .advisory import TwythonDeprecationWarning from .advisory import TwythonDeprecationWarning
from .compat import json, urlencode, parse_qsl, quote_plus from .compat import json, urlencode, parse_qsl, quote_plus
from .endpoints import api_table from .endpoints import api_table
from .exceptions import TwythonError, TwythonAuthError, TwythonRateLimitError from .exceptions import TwythonError, TwythonAuthError, TwythonRateLimitError
from .version import __version__
warnings.simplefilter('always', TwythonDeprecationWarning) # For Python 2.7 > warnings.simplefilter('always', TwythonDeprecationWarning) # For Python 2.7 >

View file

@ -1 +0,0 @@
__version__ = '2.8.0'