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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
#!/usr/bin/env python
# vim: ts=4:sw=4:expandtab
# BleachBit
# Copyright (C) 2008-2025 Andrew Ziem
# https://www.bleachbit.org
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
Build BleachBit tarballs
"""
# standard library
import glob
import os
import sys
# third-party
from setuptools import setup
# local import
import bleachbit
import bleachbit.General
import bleachbit.FileUtilities
APP_DESCRIPTION = "BleachBit frees space and maintains privacy by quickly wiping files you don't need and didn't know you had."
data_files = []
if sys.platform == 'linux':
data_files.append(('/usr/share/applications',
['./org.bleachbit.BleachBit.desktop']))
data_files.append(('/usr/share/pixmaps/', ['./bleachbit.png']))
elif sys.platform[:6] == 'netbsd':
data_files.append(('/usr/pkg/share/applications',
['./org.bleachbit.BleachBit.desktop']))
data_files.append(('/usr/pkg/share/pixmaps/', ['./bleachbit.png']))
elif sys.platform.startswith('openbsd') or sys.platform.startswith('freebsd'):
data_files.append(
('/usr/local/share/applications', ['./org.bleachbit.BleachBit.desktop']))
data_files.append(('/usr/local/share/pixmaps/', ['./bleachbit.png']))
def run_setup(args={}):
setup(name='bleachbit',
version=bleachbit.APP_VERSION,
description=bleachbit.APP_NAME,
long_description=APP_DESCRIPTION,
author="Andrew Ziem",
author_email="andrew@bleachbit.org",
url=bleachbit.APP_URL,
download_url="https://www.bleachbit.org/download",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
],
license='GPL-3.0-or-later',
# py_requires='>=3.8',
# Ubuntu 20.04 LTS is EOL on April 2025, and it has Python 3.8.
platforms='Linux and Windows, Python v3.8+, GTK v3.24+',
packages=['bleachbit', 'bleachbit.markovify'],
**args)
def supported_languages():
"""Return list of supported languages by scanning ./po/
This function is used by:
* windows/setup.py
* bleachbit-misc/extract_desktop.py
"""
langs = []
for pathname in glob.glob('po/*.po'):
basename = os.path.basename(pathname)
langs.append(os.path.splitext(basename)[0])
return sorted(langs)
if __name__ == '__main__':
run_setup()
|