PyTaxonomies/pyproject.toml

50 lines
1.4 KiB
TOML
Raw Permalink Normal View History

2020-02-17 19:15:39 +01:00
[tool.poetry]
name = "pytaxonomies"
2022-05-13 16:35:20 +02:00
version = "1.5.0"
2020-02-17 19:15:39 +01:00
description = "Python API for the taxonomies."
authors = ["Raphaël Vinot <raphael.vinot@circl.lu>"]
license = "BSD-3-Clause"
repository = "https://github.com/MISP/PyTaxonomies"
readme = "README.md"
classifiers=[
'License :: OSI Approved :: BSD License',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Programming Language :: Python',
'Topic :: Security',
'Topic :: Internet',
]
include = ["pytaxonomies/data/misp-taxonomies/schema.json",
"pytaxonomies/data/misp-taxonomies/MANIFEST.json",
"pytaxonomies/data/misp-taxonomies/*/machinetag.json"]
[tool.poetry.dependencies]
2022-05-13 16:35:20 +02:00
python = "^3.8"
2023-05-23 15:19:01 +02:00
requests = { version = "^2.31.0", optional = true }
2020-02-17 19:15:39 +01:00
flask-nav = {version = "^0.6", optional = true}
2023-12-22 11:59:06 +01:00
Flask = {version = "^3.0.0", optional = true}
2021-08-16 16:00:01 +02:00
Flask-Bootstrap = {version = "^3.3.7.1", optional = true}
2023-10-04 18:32:22 +02:00
Flask-WTF = {version = "^1.2.1", optional = true}
2020-02-17 19:15:39 +01:00
[tool.poetry.extras]
webui = ["flask-nav", "Flask", "Flask-Bootstrap", "Flask-WTF"]
remote = ["requests"]
[tool.poetry.dev-dependencies]
2023-12-05 00:00:32 +01:00
jsonschema = "^4.20.0"
2023-12-22 11:58:23 +01:00
mypy = "^1.8.0"
2024-01-11 21:37:18 +01:00
types-requests = "^2.31.0.20240106"
2023-06-26 15:46:31 +02:00
pytest-cov = "^4.1.0"
2020-02-17 19:15:39 +01:00
2020-03-10 14:50:13 +01:00
[tool.poetry.scripts]
2020-03-10 15:15:41 +01:00
pytaxonomies = 'pytaxonomies.script:main'
2020-03-10 14:50:13 +01:00
2020-02-17 19:15:39 +01:00
[build-system]
2020-10-26 11:26:31 +01:00
requires = ["poetry_core>=1.0", "setuptools"]
build-backend = "poetry.core.masonry.api"