-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
45 lines (38 loc) · 1.35 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[project]
name = "pytaxonomies"
version = "2.0"
description = "Python API for the taxonomies."
authors = [{name="Raphaël Vinot", email="[email protected]"}]
license = "BSD-3-Clause"
repository = "https://github.com/MISP/PyTaxonomies"
readme = "README.md"
requires-python = ">=3.9"
dynamic = ["classifiers"]
[tool.poetry]
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Topic :: Security',
'Topic :: Internet',
]
exclude = ["pytaxonomies/data/misp-taxonomies"]
include = [
{ path = "pytaxonomies/data/misp-taxonomies/MANIFEST.json", format = ["sdist", "wheel"] },
{ path = "pytaxonomies/data/misp-taxonomies/schema.json", format = ["sdist", "wheel"] },
{ path = "pytaxonomies/data/misp-taxonomies/*/machinetag.json", format = ["sdist", "wheel"] }
]
[project.scripts]
pytaxonomies = 'pytaxonomies.script:main'
[project.optional-dependencies]
webui = ["flask-nav (>=0.6)", "Flask (>=3.0.3)", "Flask-Bootstrap (>=3.3.7.1)", "Flask-WTF (>=1.2.1)"]
remote = ["requests (>=2.32.3)"]
[tool.poetry.group.dev.dependencies]
jsonschema = "^4.23.0"
mypy = "^1.14.1"
types-requests = "^2.32.0.20241016"
pytest-cov = "^6.0.0"
[build-system]
requires = ["poetry_core>=2.0"]
build-backend = "poetry.core.masonry.api"