Skip to content
Snippets Groups Projects
Select Git revision
  • c6e1e6ccd201664db20068c0aaabba83082ea449
  • test default
2 results

setup.py

Blame
  • user avatar
    Pierre LALET authored
      - update (part of) the documentation
        - some URLs for Windows need to be updated
      - update classifiers in setup.py
      - remove `from __future__ import with_statement`
      - use `{k: v for ...}` instead of `dict((k, v) for ...)`
      - remove hacks for `gcd()` and `binrepr()` implementations
      - use class decorators
      - remove Python 2.6 Travis-CI tests
    b2a7a54a
    History
    setup.py 2.50 KiB
    #! /usr/bin/env python
    
    """
    Distutils setup file for Scapy.
    """
    
    
    from distutils import archive_util
    from distutils import sysconfig
    from distutils.core import setup
    from distutils.command.sdist import sdist
    import os
    
    
    EZIP_HEADER = """#! /bin/sh
    PYTHONPATH=$0/%s exec python -m scapy.__init__
    """
    
    
    def make_ezipfile(base_name, base_dir, verbose=0, dry_run=0, **kwargs):
        fname = archive_util.make_zipfile(base_name, base_dir, verbose, dry_run)
        ofname = fname + ".old"
        os.rename(fname, ofname)
        of = open(ofname)
        f = open(fname, "w")
        f.write(EZIP_HEADER % base_dir)
        while True:
            data = of.read(8192)
            if not data:
                break
            f.write(data)
        f.close()
        os.system("zip -A '%s'" % fname)
        of.close()
        os.unlink(ofname)
        os.chmod(fname, 0755)
        return fname
    
    
    archive_util.ARCHIVE_FORMATS["ezip"] = (
        make_ezipfile, [], 'Executable ZIP file')
    
    SCRIPTS = ['bin/scapy', 'bin/UTscapy']
    # On Windows we also need additional batch files to run the above scripts
    if os.name == "nt":
        SCRIPTS += ['bin/scapy.bat', 'bin/UTscapy.bat']
    
    setup(
        name='scapy',
        version=__import__('scapy').VERSION,
        packages=[
            'scapy',
            'scapy/arch',
            'scapy/arch/windows',
            'scapy/contrib',
            'scapy/layers',
            'scapy/layers/tls',
            'scapy/layers/tls/crypto',
            'scapy/modules',
            'scapy/asn1',
            'scapy/tools',
        ],
        scripts=SCRIPTS,
        data_files=[('share/man/man1', ["doc/scapy.1.gz"])],
        package_data={
            'scapy': ['VERSION'],
        },
    
        # Metadata
        author='Philippe BIONDI',
        author_email='phil(at)secdev.org',
        description='Scapy: interactive packet manipulation tool',
        license='GPLv2',
        url='http://www.secdev.org/projects/scapy',
        download_url='https://github.com/secdev/scapy/tarball/master',
        keywords=["network"],
        classifiers=[
            "Development Status :: 5 - Production/Stable",
            "Environment :: Console",
            "Intended Audience :: Developers",
            "Intended Audience :: Information Technology",
            "Intended Audience :: Science/Research",
            "Intended Audience :: System Administrators",
            "Intended Audience :: Telecommunications Industry",
            "License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
            "Programming Language :: Python :: 2",
            "Programming Language :: Python :: 2.7",
            "Topic :: Security",
            "Topic :: System :: Networking",
            "Topic :: System :: Networking :: Monitoring",
        ]
    )