2024-06-20 08:14:38 +00:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["setuptools", "wheel"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "cern-caimira"
|
2025-07-24 14:16:01 +00:00
|
|
|
version = "4.18.0"
|
2024-06-20 08:14:38 +00:00
|
|
|
description = "CAiMIRA - CERN Airborne Model for Indoor Risk Assessment"
|
|
|
|
|
license = { text = "Apache-2.0" }
|
|
|
|
|
authors = [
|
|
|
|
|
{ name = "Andre Henriques", email = "andre.henriques@cern.ch" }
|
|
|
|
|
]
|
|
|
|
|
classifiers = [
|
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
|
"License :: OSI Approved :: Apache Software License",
|
|
|
|
|
]
|
|
|
|
|
requires-python = ">=3.9"
|
|
|
|
|
dependencies = [
|
2024-07-18 08:39:07 +00:00
|
|
|
'ipykernel',
|
|
|
|
|
'ipympl >= 0.9.0',
|
|
|
|
|
'ipywidgets < 8.0',
|
2024-06-20 08:14:38 +00:00
|
|
|
"Jinja2",
|
|
|
|
|
"loky",
|
|
|
|
|
"matplotlib",
|
|
|
|
|
"memoization",
|
|
|
|
|
"mistune",
|
|
|
|
|
"numpy",
|
|
|
|
|
"pandas",
|
2025-07-24 08:42:12 +00:00
|
|
|
"pyinstrument >= 5.0.3",
|
2024-06-20 08:14:38 +00:00
|
|
|
"retry",
|
|
|
|
|
"ruptures",
|
|
|
|
|
"scipy",
|
|
|
|
|
"timezonefinder",
|
|
|
|
|
"tornado",
|
|
|
|
|
"types-retry",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = []
|
|
|
|
|
test = [
|
|
|
|
|
"pytest",
|
2025-07-24 08:42:12 +00:00
|
|
|
"pytest-mypy >= 1.0.1",
|
|
|
|
|
"mypy >= 1.17.0",
|
2024-06-20 08:14:38 +00:00
|
|
|
"pytest-tornasync",
|
|
|
|
|
"types-dataclasses",
|
|
|
|
|
"types-requests"
|
|
|
|
|
]
|
|
|
|
|
doc = [
|
|
|
|
|
"sphinx",
|
|
|
|
|
"sphinx_rtd_theme"
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
|
Homepage = "https://cern.ch/caimira"
|
|
|
|
|
|
2024-07-26 16:04:53 +00:00
|
|
|
[tool.setuptools.package-data]
|
|
|
|
|
cern_caimira = ["**/*"]
|
2024-06-20 08:14:38 +00:00
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
addopts = "--mypy"
|
|
|
|
|
|
|
|
|
|
[tool.mypy]
|
|
|
|
|
no_warn_no_return = true
|
2024-07-17 16:01:40 +00:00
|
|
|
|
|
|
|
|
[[tool.mypy.overrides]]
|
2024-07-18 08:39:07 +00:00
|
|
|
module = ["caimira.*", "ipympl.*", "ipywidgets", "loky", "setuptools", "pandas"]
|
2024-06-20 08:14:38 +00:00
|
|
|
ignore_missing_imports = true
|