Skip to content
Snippets Groups Projects
Select Git revision
  • 73f2a87aa0f99fb4816f2b4d86dae11c4980b1a2
  • master default protected
  • add-metadata-cleaner-link
  • fix-key-error-for-svg-without-xmlns
  • factorize
  • ppt
  • patch-1
  • pdf_depth
  • fix_testsuite
  • add_wav_support
  • please_mypy
  • improve_zip
  • improve_images
  • improve_svg
  • inverted_backup
  • bak
  • elementary-contract
  • implement_lightweight_mode_msoffice
  • 0.11.0
  • 0.10.1
  • 0.10.0
  • 0.9.0
  • 0.8.0
  • 0.7.0
  • 0.6.0
  • 0.5.0
  • 0.4.0
  • 0.3.1
  • 0.3.0
  • 0.2.0
  • 0.1.3
  • 0.1.2
  • 0.1.1
  • 0.1.0
34 results

test_corrupted_files.py

Blame
  • Forked from jvoisin / mat2
    Source project has a limited visibility.
    setup.py 1.07 KiB
    import setuptools
    
    with open("README.md", "r") as fh:
        long_description = fh.read()
    
    setuptools.setup(
        name="mat2",
        version='0.1.3',
        author="Julien (jvoisin) Voisin",
        author_email="julien.voisin+mat2@dustri.org",
        description="A handy tool to trash your metadata",
        long_description=long_description,
        long_description_content_type="text/markdown",
        url="https://0xacab.org/jvoisin/mat2",
        python_requires = '>=3.5.0',
        scripts=['mat2'],
        install_requires=[
            'mutagen',
            'PyGObject',
            'pycairo',
        ],
        packages=setuptools.find_packages(exclude=('tests', )),
        classifiers=(
            "Development Status :: 3 - Alpha",
            "Environment :: Console",
            "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
            "Operating System :: OS Independent",
            "Programming Language :: Python :: 3 :: Only",
            "Topic :: Security",
            "Intended Audience :: End Users/Desktop",
        ),
        project_urls={
            'bugtacker': 'https://0xacab.org/jvoisin/mat2/issues',
        },
    )