Skip to content
Snippets Groups Projects
Select Git revision
  • 15
  • master default
  • minimal-nupkg-support
  • bookworm
  • exclude-tool
  • issue-372/html-diff-truncation
  • mr-107-nar-support
  • bug-1053668
  • issue-333
  • libxmlb_arch
  • issue-216
  • experiment-with-memoizing-output-from-expensive-external-commands-eg-readelf
  • external-diff-tools
  • fix_file_537_v2
  • fix_file_537
  • 12-catches-exception-while-handling-no-space-left-on-device-exception
  • stretch
  • 15-please-add-vim-folding-for-text-output
  • comparators-importerror
  • jwnx_parallel_diffoscope
  • jwnx_radare2_readelf
  • 294
  • 293
  • 292
  • 291
  • 290
  • 289
  • 288
  • 287
  • 286
  • 285
  • 284
  • 283
  • 282
  • 281
  • 280
  • 279
  • 278
  • 277
  • 240+deb12u1
  • 276
41 results

setup.py

Blame
  • Forked from Reproducible Builds / diffoscope
    3370 commits behind the upstream repository.
    setup.py 820 B
    #!/usr/bin/env python2
    
    from setuptools import setup, find_packages
    import debbindiff
    
    setup(name='debbindiff',
          version=debbindiff.VERSION,
          description='display differences between files',
          long_description=open('README').read(),
          author='Lunar',
          author_email='lunar@debian.org',
          url='https://wiki.debian.org/ReproducibleBuilds',
          packages=find_packages(),
          scripts=['debbindiff.py'],
          install_requires=[
              'python-debian',
              'magic',
              'rpm',
              ],
          classifiers=[
              'Development Status :: 3 - Alpha',
              'Intended Audience :: Developers',
              'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
              'Operating System :: POSIX',
              'Topic :: Utilities',
              ],
          )