예제 #1
0
    'sdist': sdist,
    'build': pkgdist.build,
    'build_py': pkgdist.build_py2to3,
    'build_ext': pkgdist.build_ext,
    'test': test,
    'install': install,
})

setup(
    description='package managing framework',
    url='https://github.com/pkgcore/pkgcore',
    license='BSD/GPLv2',
    author='Brian Harring, Tim Harder',
    author_email='*****@*****.**',
    data_files=list(chain(
        pkgdist.data_mapping(EBD_INSTALL_OFFSET, 'ebd'),
        pkgdist.data_mapping(CONFIG_INSTALL_OFFSET, 'config'),
        pkgdist.data_mapping('share/zsh/site-functions', 'shell/zsh/completion'),
        pkgdist.data_mapping(
            os.path.join(LIBDIR_INSTALL_OFFSET, 'shell'), 'shell',
            skip=glob.glob('shell/*/completion')),
    )),
    ext_modules=extensions,
    cmdclass=cmdclass,
    classifiers=[
        'License :: OSI Approved :: BSD License',
        'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 3.4',
        'Programming Language :: Python :: 3.5',
        'Programming Language :: Python :: 3.6',
예제 #2
0
파일: setup.py 프로젝트: pkgcore/pkgcheck
 version=pkgdist.version(),
 license='BSD/GPL2',
 author='Brian Harring, Tim Harder',
 author_email='*****@*****.**',
 description='pkgcore-based QA utility',
 long_description=readme,
 url='https://github.com/pkgcore/pkgcheck',
 packages=find_packages(),
 install_requires=[
     'lxml',
     'snakeoil>=0.7.0',
     'pkgcore>=0.9.5',
 ],
 scripts=os.listdir('bin'),
 data_files=list(
     pkgdist.data_mapping('share/zsh/site-functions', 'completion/zsh'),
 ),
 cmdclass={
     'sdist': pkgdist.sdist,
     'test': test,
     'build_py': pkgdist.build_py2to3,
     'build_man': pkgdist.build_man,
     'build_docs': pkgdist.build_docs,
     'build_scripts': pkgdist.build_scripts,
     'install_man': pkgdist.install_man,
     'install_docs': pkgdist.install_docs,
 },
 classifiers=[
     'License :: OSI Approved :: BSD License',
     'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
     'Programming Language :: Python :: 2.7',
예제 #3
0
파일: setup.py 프로젝트: den4ix/pkgcore
setup(
    name='pkgcore',
    version=pkgdist.version(),
    description='package managing framework',
    long_description=readme,
    url='https://github.com/pkgcore/pkgcore',
    license='BSD/GPLv2',
    author='Brian Harring, Tim Harder',
    author_email='*****@*****.**',
    packages=find_packages(),
    setup_requires=['snakeoil>=0.7.0'],
    install_requires=['snakeoil>=0.7.0'],
    scripts=os.listdir('bin'),
    data_files=list(chain(
        pkgdist.data_mapping(EBD_INSTALL_OFFSET, 'ebd'),
        pkgdist.data_mapping(CONFIG_INSTALL_OFFSET, 'config'),
        pkgdist.data_mapping('share/zsh/site-functions', 'shell/zsh/completion'),
        pkgdist.data_mapping(
            os.path.join(LIBDIR_INSTALL_OFFSET, 'shell'), 'shell',
            skip=glob.glob('shell/*/completion')),
    )),
    ext_modules=extensions, cmdclass=cmdclass, command_options=command_options,
    classifiers=[
        'License :: OSI Approved :: BSD License',
        'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 3.3',
        'Programming Language :: Python :: 3.4',
        'Programming Language :: Python :: 3.5',
    ],
예제 #4
0
 version=pkgdist.version(),
 license='BSD/GPL2',
 author='Brian Harring, Tim Harder',
 author_email='*****@*****.**',
 description='pkgcore-based QA utility',
 long_description=readme,
 url='https://github.com/pkgcore/pkgcheck',
 packages=find_packages(),
 install_requires=[
     'lxml',
     'snakeoil>=0.7.2',
     'pkgcore>=0.9.5',
 ],
 scripts=os.listdir('bin'),
 data_files=list(
     pkgdist.data_mapping('share/zsh/site-functions', 'completion/zsh'), ),
 cmdclass={
     'sdist': pkgdist.sdist,
     'test': test,
     'build_py': pkgdist.build_py2to3,
     'build_man': pkgdist.build_man,
     'build_docs': pkgdist.build_docs,
     'build_scripts': pkgdist.build_scripts,
     'install_man': pkgdist.install_man,
     'install_docs': pkgdist.install_docs,
 },
 classifiers=[
     'License :: OSI Approved :: BSD License',
     'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
     'Programming Language :: Python :: 2.7',
     'Programming Language :: Python :: 3.4',