Exemple #1
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)
Exemple #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)
Exemple #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
Exemple #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 *
Exemple #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']