-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 895 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 895 Bytes
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
[tool.poetry]
name = "case-mapping"
version = "0.2.1"
description = "Classes to support representation of the CASE Cyber Ontology"
authors = [
]
maintainers = [
"Cyber Domain Ontology Maintainers <operations@cyberdomainontology.org>"
]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/casework/CASE-Mapping-Python"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries"
]
[tool.poetry.dependencies]
cdo-local-uuid = "^0.5.0"
python = "^3.10"
pytz = "^2025"
[tool.poetry.group.dev.dependencies]
mypy = "^1"
pytest = ">=7.4.2,<10.0.0"
types-pytz = "^2024"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"