Exemplo n.º 1
0
Arquivo: setup.py Projeto: ckaus/EpiPy
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from setuptools import setup, find_packages
from epipy import __version__, __author__, __author_email__, \
    __maintainer__, __maintainer_email__, __description__

try:
    from PyQt4.Qt import PYQT_VERSION_STR

    if int(PYQT_VERSION_STR.replace('.', '')) < 486:
        raise ImportError('''Expect PyQt4 4.8.6 or higher''')

except ImportError as error:
    raise ImportError(error)
    exit()

with open('requirements.txt') as f:
    requirements = f.readlines()

setup(
    name='epipy',
    version=__version__,
    author=__author__,
    author_email=__author_email__,
    maintainer=__maintainer__,
    maintainer_email=__maintainer_email__,
    description=__description__,
    long_description='''This tool is developed for the course Softwareprojekt
 Mobilkommunikation at the Freie Universität Berlin.
 .
Exemplo n.º 2
0
Arquivo: setup.py Projeto: ckaus/EpiPy
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from setuptools import setup, find_packages
from epipy import __version__, __author__, __author_email__, \
    __maintainer__, __maintainer_email__, __description__

try:
    from PyQt4.Qt import PYQT_VERSION_STR

    if int(PYQT_VERSION_STR.replace('.', '')) < 486:
        raise ImportError('''Expect PyQt4 4.8.6 or higher''')

except ImportError as error:
    raise ImportError(error)
    exit()

with open('requirements.txt') as f:
    requirements = f.readlines()

setup(
    name='epipy',
    version=__version__,
    author=__author__,
    author_email=__author_email__,
    maintainer=__maintainer__,
    maintainer_email=__maintainer_email__,
    description=__description__,
    long_description='''This tool is developed for the course Softwareprojekt
 Mobilkommunikation at the Freie Universität Berlin.
 .