Skip to content
Snippets Groups Projects
Select Git revision
  • 36d827554152c152bfb77d8fd84aa6cd5bea760a
  • master default
  • allow-offline
  • 9028
  • fix-fs-backend-benchmarks
  • 9023
  • 9010
  • 9006
  • 9004
  • fix-logging
  • 8995-8996-8997
  • fix-db-copying
  • 8979
  • improve-server-startup
  • blobs-upload-download
  • 8942
  • 8944
  • 8948
  • 8908
  • 8420
  • move-sphinx-up
  • 0.9.6post2
  • 0.9.6post1
  • 0.9.6
  • 0.9.5
  • 0.9.3
  • 0.9.2
  • 0.9.1
  • 0.9.0
  • 0.9.0rc1
  • 0.8.1
  • 0.8.0
  • 0.7.4
  • 0.7.3
  • 0.7.2
  • 0.7.1
  • 0.7.0
  • 0.6.5
  • 0.6.4
  • 0.6.3
  • 0.6.2
41 results

conf.py

Blame
  • Forked from leap / soledad
    Source project has a limited visibility.
    setup.py 1.13 KiB
    import setuptools
    
    with open("README.md", encoding='utf-8') as fh:
        long_description = fh.read()
    
    setuptools.setup(
        name="mat2",
        version='0.13.5',
        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', )),
        data_files = [('share/man/man1', ['doc/mat2.1'])],
        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',
        },
    )