예제 #1
0
파일: setup.py 프로젝트: Erotemic/plottool
#!/usr/bin/env python2.7
from __future__ import absolute_import, division, print_function
from setuptools import setup
from utool import util_setup

INSTALL_REQUIRES = [
    'matplotlib >= 1.3.1',
    'numpy >= 1.9.0',
]


if __name__ == '__main__':
    kwargs = util_setup.setuptools_setup(
        name='plottool',
        version=util_setup.parse_package_for_version('plottool'),
        licence=util_setup.read_license('LICENSE'),
        long_description=util_setup.parse_readme('README.md'),
        description=('Plottool - tools matplotlib computer vision plots'),
        url='https://github.com/Erotemic/plottool',
        keywords='',
        package_data={},
        classifiers=[],
        author='Jon Crall',
        author_email='*****@*****.**',
        setup_fpath=__file__,
    )
    setup(**kwargs)
예제 #2
0
        util_cplat.shell('mingw_build.bat')
    else:
        util_cplat.shell('./unix_build.sh')


INSTALL_REQUIRES = [
    #'detecttools >= 1.0.0.dev1',
]

if __name__ == '__main__':
    kwargs = util_setup.setuptools_setup(
        name='pybing',
        packages=['pybing', 'build'],
        #packages=util_setup.find_packages(),
        version=util_setup.parse_package_for_version('pybing'),
        licence=util_setup.read_license('LICENSE'),
        long_description=util_setup.parse_readme('README.md'),
        description=(
            'Detects objects in images using BING (BInarized Normed Gradients)'
        ),
        url='https://github.com/bluemellophone/pybing',
        author='Jason Parham',
        author_email='*****@*****.**',
        clutter_patterns=clutter_patterns,
        install_requires=INSTALL_REQUIRES,
        package_data={'build': util_cplat.get_dynamic_lib_globstrs()},
        build_command=build_command,
        setup_fpath=__file__,
    )
    setup(**kwargs)