-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (80 loc) · 2.09 KB
/
Copy pathpyproject.toml
File metadata and controls
85 lines (80 loc) · 2.09 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
[build-system]
requires = [
"scikit-build-core>=0.8",
"pybind11>=2.12",
"cmake>=3.18",
]
build-backend = "scikit_build_core.build"
[project]
name = "ggrepel-python"
version = "0.9.8.9999"
description = "Python port of the R ggrepel package: non-overlapping text/label layout for ggplot2_py (tracks R ggrepel 0.9.8.9999)"
readme = "README.md"
requires-python = ">=3.10"
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
authors = [
{ name = "Jeffery Liu", email = "jeffliu.lucky@gmail.com" },
]
keywords = [
"ggrepel",
"ggplot2",
"label-layout",
"text-repel",
"R-port",
"visualization",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: C++",
"Topic :: Scientific/Engineering :: Visualization",
"Typing :: Typed",
]
dependencies = [
"numpy>=1.24",
"pandas>=2.0",
"ggplot2-python>=4.0.2",
"scales-python>=1.4.0",
"rgrid-python>=4.5.3",
"gtable-python>=0.3.6",
]
[project.optional-dependencies]
dev = ["pytest", "pytest-cov", "ruff", "build", "twine"]
docs = [
"mkdocs",
"mkdocstrings[python]",
"mkdocs-material",
"mkdocs-jupyter",
]
[project.urls]
Homepage = "https://github.com/Bio-Babel/ggrepel-python"
Repository = "https://github.com/Bio-Babel/ggrepel-python"
Issues = "https://github.com/Bio-Babel/ggrepel-python/issues"
Documentation = "https://github.com/Bio-Babel/ggrepel-python#readme"
[tool.scikit-build]
cmake.version = ">=3.18"
cmake.build-type = "Release"
wheel.packages = ["ggrepel_py"]
wheel.install-dir = "."
sdist.exclude = [
"tutorials/",
"docs/",
"tests/",
"site/",
"validation/",
"mkdocs.yml",
".github/",
"*.egg-info/",
"build/",
"dist/",
]
[tool.pytest.ini_options]
testpaths = ["tests"]