-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (82 loc) · 2.14 KB
/
Copy pathpyproject.toml
File metadata and controls
88 lines (82 loc) · 2.14 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
87
88
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ggplot2-python"
version = "4.0.2.9000.post7"
description = "Python port of the R ggplot2 package (tracks R ggplot2 4.0.2.9000)"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Jeffery Liu", email = "jeffliu.lucky@gmail.com" },
]
keywords = [
"ggplot2",
"grammar-of-graphics",
"visualization",
"R-port",
"plotting",
"data-visualization",
"statistical-graphics",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Visualization",
"Typing :: Typed",
]
dependencies = [
"rgrid-python>=4.5.3",
"gtable-python>=0.3.6",
"scales-python>=1.4.0",
"numpy>=1.24",
"pandas>=1.5",
"scipy>=1.10",
"contourpy>=1.0",
"statsmodels>=0.13",
"geopandas>=0.12",
"Pillow>=9.0",
"matplotlib>=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/ggplot2-python"
Repository = "https://github.com/Bio-Babel/ggplot2-python"
Issues = "https://github.com/Bio-Babel/ggplot2-python/issues"
Documentation = "https://github.com/Bio-Babel/ggplot2-python#readme"
[tool.hatch.build.targets.wheel]
packages = ["ggplot2_py"]
[tool.hatch.build.targets.sdist]
exclude = [
"tutorials/",
"docs/",
"tests/",
"site/",
"validation/",
"assets/",
"mkdocs.yml",
".github/",
"*.egg-info/",
"build/",
"dist/",
]
[tool.pytest.ini_options]
testpaths = ["tests"]