2007-01-16 03:44:45 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
# This is the setup.py script for "flawfinder" by David A. Wheeler.
|
|
|
|
# My thanks to Jon Nelson, who created the initial setup.py script.
|
|
|
|
|
|
|
|
"""Setup script for the flawfinder tool."""
|
|
|
|
|
2017-09-03 01:56:58 +02:00
|
|
|
from setuptools import setup # Don't need find_packages
|
2007-01-16 03:44:45 +01:00
|
|
|
|
|
|
|
setup (# Distribution meta-data
|
|
|
|
name = "flawfinder",
|
2017-09-03 02:46:45 +02:00
|
|
|
version = "2.0.4",
|
|
|
|
# We install a script, not a separate package.
|
|
|
|
# packages = ["flawfinder"], # Must be same as name
|
2017-09-03 01:56:58 +02:00
|
|
|
# Do not need: packages=find_packages(),
|
2007-01-16 03:44:45 +01:00
|
|
|
description = "a program that examines source code looking for security weaknesses",
|
|
|
|
author = "David A. Wheeler",
|
|
|
|
author_email = "dwheeler@dwheeler.com",
|
2017-07-29 19:24:25 +02:00
|
|
|
license = 'GPL-2.0+',
|
2007-01-16 03:44:45 +01:00
|
|
|
long_description = """Flawfinder is a program that can scan
|
|
|
|
C/C++ source code and identify out potential security flaws,
|
|
|
|
ranking them by likely severity.
|
|
|
|
It is released under the GNU GPL license.""",
|
|
|
|
url = "http://www.dwheeler.com/flawfinder/",
|
2017-09-03 02:46:45 +02:00
|
|
|
download_url = "https://sourceforge.net/projects/flawfinder/files/flawfinder-2.0.4.tar.gz/download",
|
2017-09-03 01:56:58 +02:00
|
|
|
zip_safe = True,
|
2017-08-13 23:45:32 +02:00
|
|
|
keywords = ['analysis', 'security', 'analyzer'],
|
|
|
|
classifiers = [
|
|
|
|
'Development Status :: 5 - Production/Stable',
|
|
|
|
'Environment :: Console',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
|
|
|
|
'Natural Language :: English',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
2017-09-03 01:56:58 +02:00
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Programming Language :: Python :: 3.6',
|
2017-08-13 23:45:32 +02:00
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Topic :: Security',
|
|
|
|
'Topic :: Software Development :: Build Tools',
|
|
|
|
'Topic :: Software Development :: Quality Assurance',
|
|
|
|
'Topic :: Software Development :: Testing'
|
|
|
|
],
|
2017-09-03 01:56:58 +02:00
|
|
|
python_requires = '>=2.7',
|
2007-01-16 03:44:45 +01:00
|
|
|
scripts = [ 'flawfinder' ],
|
|
|
|
data_files = [ ('share/man/man1', [ 'flawfinder.1.gz' ]) ],
|
|
|
|
py_modules = [ ],
|
|
|
|
)
|