1
0
Fork 0
mat2/setup.py

37 lines
1.1 KiB
Python
Raw Normal View History

import setuptools
2019-02-21 10:36:23 +01:00
with open("README.md", encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name="mat2",
2023-02-23 21:36:46 +01:00
version='0.13.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', )),
data_files = [('man/man1', ['doc/mat2.1'])],
2018-09-06 11:42:07 +02:00
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",
2018-09-06 11:42:07 +02:00
],
project_urls={
'bugtacker': 'https://0xacab.org/jvoisin/mat2/issues',
},
)