Ejemplo n.º 1
0
Archivo: me.py Proyecto: arhik/pulsar
 def test_version(self):
     self.assertTrue(pulsar.VERSION)
     self.assertTrue(pulsar.__version__)
     self.assertEqual(pulsar.__version__, get_version(pulsar.VERSION))
     self.assertTrue(len(pulsar.VERSION) >= 2)
Ejemplo n.º 2
0
 def test_version(self):
     self.assertTrue(pulsar.VERSION)
     self.assertTrue(pulsar.__version__)
     self.assertEqual(pulsar.__version__, get_version(pulsar.VERSION))
     self.assertTrue(len(pulsar.VERSION) >= 2)
Ejemplo n.º 3
0
'''python web toolkit'''
import os

VERSION = (0, 3, 1, 'final', 0)
__author__ = 'Luca Sbardella'
__contact__ = "*****@*****.**"
PACKAGE_DIR = os.path.dirname(os.path.abspath(__file__))


if os.environ.get('lux_install_running') != 'yes':
    from pulsar.utils.version import get_version

    __version__ = version = get_version(VERSION, __file__)

    from .core import *     # noqa
Ejemplo n.º 4
0
'''python web toolkit'''
import os

VERSION = (0, 1, 3, 'alpha', 0)
__author__ = 'Luca Sbardella'
__contact__ = "*****@*****.**"
PACKAGE_DIR = os.path.dirname(os.path.abspath(__file__))


if os.environ.get('lux_install_running') != 'yes':
    from pulsar.utils.version import get_version

    __version__ = version = get_version(VERSION)

    from .core import *
Ejemplo n.º 5
0
import os

VERSION = (0, 2, 0, 'alpha', 0)

__version__ = '.'.join((str(v) for v in VERSION))
__author__ = "Luca Sbardella"
__contact__ = "*****@*****.**"
__homepage__ = "https://github.com/quantmind/pulsar-cloud"

if os.environ.get('pulsar_cloud_setup') != 'yes':
    from pulsar.utils.version import get_version

    from .pulsar_botocore import Botocore
    from .pusher import Pusher

    __version__ = get_version(VERSION)

    __all__ = ['Botocore', 'Pusher']