This repository has been archived by the owner on Dec 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
/
setup.py
53 lines (49 loc) · 2.1 KB
/
setup.py
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
from distutils import log
import os
import sys
from setuptools import setup, find_packages
VERSION = "1.7.0"
PACKAGE_VERSION = {
"classification-banner": "classification-banner == {0}".format(VERSION),
}
setup(
name="classification-banner",
version=VERSION,
description="Displays Classification Banner for a Graphical Session",
long_description="""Classification Banner is a python script that will display the
classification level banner of a session with a variety of
configuration options on the primary screen. This script can
help government and possibly private customers display a
notification that sensitive material is being displayed - for
example PII or SECRET Material being processed in a graphical
session. The script has been tested on a variety of graphical
environments such as GNOME2, GNOME3, KDE, twm, icewm, and Cinnamon.""",
license="GPLv2",
author="Frank Caviggia",
author_email="[email protected]",
maintainer="classification-banner Developers",
url="https://github.com/fcaviggia/classification-banner",
download_url="https://github.com/fcaviggia/classification-banner",
platforms=["Linux"],
python_requires=">=2.6,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
("License :: OSI Approved :: "
"GNU General Public License v2 (GPLv2)"),
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Topic :: Security",
],
packages=find_packages(),
scripts=["bin/classification-banner"],
data_files=[('share', ['share/classification-banner-screenshot.png']),
('contrib', ['contrib/banner.conf', 'contrib/classification-banner.desktop'])
],
)