|
| 1 | +[project] |
| 2 | +name = "pyobas" |
| 3 | +dynamic = ["version"] |
| 4 | +description = "Python API client for OpenBAS." |
| 5 | +authors = [ |
| 6 | + { name = "Filigran", email = "[email protected]"} |
| 7 | + ] |
| 8 | +maintainers = [ |
| 9 | + { name = "Filigran", email = "[email protected]"} |
| 10 | + ] |
| 11 | +license = { text = "Apache-2.0" } |
| 12 | +readme = "README.md" |
| 13 | +requires-python = ">=3.11" |
| 14 | +classifiers = [ |
| 15 | + "Development Status :: 5 - Production/Stable", |
| 16 | + "Intended Audience :: Developers", |
| 17 | + "Intended Audience :: Information Technology", |
| 18 | + "Intended Audience :: Science/Research", |
| 19 | + "License :: OSI Approved :: Apache Software License", |
| 20 | + "Natural Language :: English", |
| 21 | + "Natural Language :: French", |
| 22 | + "Operating System :: OS Independent", |
| 23 | + "Programming Language :: Python :: 3", |
| 24 | + "Topic :: Security", |
| 25 | + "Topic :: Software Development :: Libraries :: Python Modules" |
| 26 | +] |
| 27 | +dependencies = [ |
| 28 | + "datefinder (>=0.7.3,<0.8)", |
| 29 | + "pika (>=1.3.0,<1.4.0)", |
| 30 | + "python-magic (>=0.4.27,<0.5); sys_platform == 'linux' or sys_platform == 'darwin'", |
| 31 | + "python-magic-bin (>=0.4.14,<0.5); sys_platform == 'win32'", |
| 32 | + "python_json_logger (>=3.3.0,<3.4.0)", |
| 33 | + "PyYAML (>=6.0,<6.1)", |
| 34 | + "pydantic (>=2.11.3,<2.12.0)", |
| 35 | + "requests (>=2.32.3,<2.33.0)", |
| 36 | + "setuptools (>=80.4.0,<80.5.0)", |
| 37 | + "cachetools (>=5.5.0,<5.6.0)", |
| 38 | + "prometheus-client (>=0.21.1,<0.22.0)", |
| 39 | + "opentelemetry-api (>=1.32.0,<1.33.0)", |
| 40 | + "opentelemetry-sdk (>=1.32.0,<1.33.0)", |
| 41 | + # OpenBAS, |
| 42 | + "requests-toolbelt (>=1.0.0,<1.1.0)", |
| 43 | + "dataclasses-json (>=0.6.4,<0.7.0)", |
| 44 | + "thefuzz (>=0.22,<0.23)" |
| 45 | +] |
| 46 | + |
| 47 | +[project.optional-dependencies] |
| 48 | +dev = [ |
| 49 | + "black (>=25.1.0,<25.2.0)", |
| 50 | + "build (>=1.2.1,<1.3.0)", |
| 51 | + "isort (>=6.0.0,<6.1.0)", |
| 52 | + "types-pytz (>=2025.2.0.20250326,<2025.3.0.0)", |
| 53 | + "pre-commit (>=4.2.0,<4.3.0)", |
| 54 | + "types-python-dateutil (>=2.9.0,<2.10.0)", |
| 55 | + "wheel (>=0.45.1,<0.46.0)" |
| 56 | +] |
| 57 | +doc = [ |
| 58 | + "autoapi (>=2.0.1,<2.1.0)", |
| 59 | + "sphinx-autodoc-typehints (>=3.2.0,<3.3.0)", |
| 60 | + "sphinx-rtd-theme (>=3.0.2,<3.1.0)" |
| 61 | +] |
| 62 | + |
1 | 63 | [build-system]
|
2 | 64 | requires = ["setuptools", "wheel"]
|
3 | 65 | build-backend = "setuptools.build_meta"
|
4 | 66 |
|
| 67 | +[tool.setuptools] |
| 68 | +include-package-data = true |
| 69 | + |
| 70 | +[tool.setuptools.packages.find] |
| 71 | + |
| 72 | +[tool.setuptools.dynamic] |
| 73 | +version = { attr = "pyobas.__version__" } |
| 74 | + |
5 | 75 | [tool.isort]
|
6 | 76 | profile = "black"
|
7 | 77 |
|
|
0 commit comments