2020-01-03 15:07:40 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "git-vuln-finder"
|
|
|
|
version = "1.0.0"
|
|
|
|
description = "Finding potential software vulnerabilities from git commit messages."
|
|
|
|
authors = [
|
|
|
|
"Alexandre Dulaunoy <a@foo.be>"
|
|
|
|
]
|
|
|
|
license = "GPL-3.0-or-later"
|
|
|
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
homepage = "https://github.com/cve-search/git-vuln-finder"
|
|
|
|
repository = "https://github.com/cve-search/git-vuln-finder"
|
|
|
|
documentation = ""
|
|
|
|
|
|
|
|
keywords = [
|
|
|
|
"git",
|
|
|
|
"cve",
|
|
|
|
"scanner",
|
|
|
|
"cve-search",
|
|
|
|
"cve-scanning",
|
|
|
|
"software-vulnerability",
|
|
|
|
"software-vulnerabilities"
|
|
|
|
]
|
|
|
|
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
"Environment :: Console",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"Intended Audience :: Science/Research",
|
|
|
|
"Topic :: Security",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"
|
|
|
|
]
|
|
|
|
|
|
|
|
include = [
|
|
|
|
"AUTHORS",
|
|
|
|
"COPYING",
|
|
|
|
"bin/*"
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
2020-01-03 16:35:04 +00:00
|
|
|
git-vuln-finder = "bin.finder:main"
|
2020-01-03 15:07:40 +00:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.6"
|
|
|
|
langdetect = "^1.0.7"
|
|
|
|
gitpython = "^3.0.5"
|
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
mypy = "^0.750"
|
|
|
|
flake8 = "^3.7.9"
|
|
|
|
nose2 = "^0.9.1"
|
2020-01-06 15:29:30 +00:00
|
|
|
pytest = "^5.3.2"
|
2020-01-03 15:07:40 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry>=0.12"]
|
|
|
|
build-backend = "poetry.masonry.api"
|