forked from fcaviggia/classification-banner
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
48 lines (44 loc) · 1.89 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
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="SecurityCentral Developers and Contributors",
maintainer="Security Central Developers",
url="https://github.com/SecurityCentral/classification-banner",
download_url="https://github.com/SecurityCentral/classification-banner/releases",
platforms=["Linux"],
python_requires=">=2.7.5,!=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 v3 (GPLv3)"),
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"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"],
)