PyTaxonomies/pyproject.toml

50 lines
1.4 KiB
TOML
Raw 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"
2022-12-09 10:51:39 +01:00
requests = { version = "^2.28.1", optional = true }
2020-02-17 19:15:39 +01:00
flask-nav = {version = "^0.6", optional = true}
2022-12-09 10:51:39 +01:00
Flask = {version = "^2.2.2", optional = true}
2021-08-16 16:00:01 +02:00
Flask-Bootstrap = {version = "^3.3.7.1", optional = true}
2022-12-09 10:51:39 +01:00
Flask-WTF = {version = "^1.0.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]
2022-12-09 10:51:39 +01:00
jsonschema = "^4.17.3"
mypy = "^0.991"
types-requests = "^2.28.11.5"
pytest-cov = "^4.0.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"