-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
52 lines (44 loc) · 1.46 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
46
47
48
49
50
51
52
[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>=10.0.0', 'python-dateutil>=2.8.2', 'drawsvg>=2.2.0']
[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 = [
"ci",
"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",
"windows: Tests which only apply to Windows environment",
]
[tool.ruff]
# Lint only mentioned dirs
src = ["src", "ci"]
# Ignore line length limitation
lint.ignore = ["E501"]