-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (76 loc) · 2.08 KB
/
Copy pathpyproject.toml
File metadata and controls
86 lines (76 loc) · 2.08 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "circlify"
version = "0.15.1"
description = "Circle packing algorithm for Python"
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "MIT"}
authors = [
{name = "Elmotec", email = "elmotec@gmx.com"}
]
keywords = ["circle", "packing", "enclosure", "hierarchy", "graph", "display", "visualization"]
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development",
"Topic :: Utilities",
"Topic :: Scientific/Engineering :: Visualization",
"Intended Audience :: Developers",
]
requires-python = ">=3.9"
dependencies = []
[project.optional-dependencies]
test = [
"coverage>=5.3",
"coveralls>=3.3.1",
"ruff>=0.1.0",
"hypothesis>=6.50.1",
]
develop = [
"coverage>=5.3",
"coveralls>=3.3.1",
"ruff>=0.1.0",
"hypothesis>=6.50.1",
"commitizen>=2.28.0",
"matplotlib>=3.5.2",
"pre-commit>=2.19.0",
"wheel>=0.37.1",
]
[project.urls]
Homepage = "http://github.com/elmotec/circlify"
Repository = "http://github.com/elmotec/circlify"
[tool.setuptools]
py-modules = ["circlify"]
[tool.setuptools.packages.find]
include = ["circlify*"]
[tool.wheel]
universal = false
[tool.ruff]
target-version = "py39"
line-length = 120
exclude = ["docs"]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"C", # flake8-comprehensions
"B", # flake8-bugbear
]
ignore = []
[tool.ruff.lint.per-file-ignores]
"test_circlify.py" = ["E501"] # Allow long lines in tests
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.15.1"
tag_format = "v$version"
version_files = ["circlify.py:__version__", "pyproject.toml:version"]