Files
roadmapper/pyproject.toml
T
2023-06-18 21:40:48 +02:00

44 lines
1.3 KiB
TOML

[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "roadmapper"
dynamic = ["version"]
authors = [{ name = "CS Goh" }]
description = "Roadmapper. A Roadmap-as-Code (RaC) python library for generating a roadmap by using python code"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ['Pillow>=9.5.0', 'python-dateutil>=2.8.2']
[project.urls]
"Homepage" = "https://github.com/csgoh/roadmapper"
"Bug Tracker" = "https://github.com/csgoh/roadmapper/issues"
[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)
exclude = [
"demo",
"generate_gallery",
"test_cases",
"tempCodeRunnerFile",
] # exclude packages matching these glob patterns (empty by default)
[tool.setuptools.dynamic]
version = { attr = "roadmapper.version.__version__" }
readme = { file = ["README.md"] }
[tool.pytest.ini_options]
addopts = "-v"
markers = [
"unit: Unit tests which are not dependent on environment",
"ubuntu: Tests which only apply to Ubuntu environment",
"macos: Tests which only apply to macOS environment",
"genimage: To generate test image",
]