1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
#!/usr/bin/python3
# Nemo Compare
from setuptools import setup
# Setup stage
setup( packages=[],
name = "nemo-compare",
version = "6.4.0",
description = "Context menu comparison extension for Nemo file manager",
author = "Linux Mint",
author_email = "root@linuxmint.com",
url = "https://github.com/linuxmint/nemo-extensions",
license = "GPL3",
# See debian/control for install-depends - this is useless here, except as reference.
# install_requires (and only works with python modules. It's equally as bad to have
# some deps here, then draw them into debian/control using {python3:Depends} and add
# them to our non-python depends.
# install_requires = ['gir1.2-nemo-3.0 >=3.8',
# 'python-nemo >=3.8',
# 'meld'],
data_files = [
('/usr/share/nemo-python/extensions', ['src/nemo-compare.py']),
('/usr/share/nemo-compare', ['src/nemo-compare-preferences.py', 'src/utils.py']),
('/usr/bin', ['src/nemo-compare-preferences'])
]
)
|