git-vuln-finder/pyproject.toml

61 lines
1.4 KiB
TOML
Raw Normal View History

2020-01-03 15:07:40 +00:00
[tool.poetry]
name = "git-vuln-finder"
2020-01-07 10:37:08 +00:00
version = "1.1"
2020-01-03 15:07:40 +00:00
description = "Finding potential software vulnerabilities from git commit messages."
authors = [
"Alexandre Dulaunoy <a@foo.be>"
]
2020-01-06 21:38:22 +00:00
license = "AGPL-3.0-or-later"
2020-01-03 15:07:40 +00:00
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 = [
2020-01-06 21:02:28 +00:00
"Development Status :: 4 - Beta Copy",
2020-01-03 15:07:40 +00:00
"Environment :: Console",
"Intended Audience :: Developers",
2020-01-06 21:02:28 +00:00
"Intended Audience :: Information Technology",
2020-01-03 15:07:40 +00:00
"Intended Audience :: Science/Research",
"Topic :: Security",
"Operating System :: OS Independent",
2020-01-06 21:02:28 +00:00
"Programming Language :: Python :: 3.6",
2020-01-03 15:07:40 +00:00
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
2020-01-06 21:02:28 +00:00
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)"
2020-01-03 15:07:40 +00:00
]
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]
flake8 = "^3.7.9"
pytest = "^5.3.2"
2020-01-03 15:07:40 +00:00
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"