-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (49 loc) · 1.6 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
53
54
[project]
name = "plotreset"
version = "0.5.2"
description = "A wrapper for matplotlib library to make academic plots with ease."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"cycler>=0.12.1",
"matplotlib>=3.9.2",
]
authors = [
{name = "Anoop K Chandran", email = "[email protected]"},
]
license = {text = "MIT License"}
keywords = ["plot", "academic", "matplotlib", "latex", "plotreset", "mpl", "style", "wrapper", "plotting", "plotting-library"]
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 5 - Production/Stable",
# Indicate who your project is intended for
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Operating System :: MacOS",
# Pick your license as you wish (see also "license" above)
"License :: OSI Approved :: MIT License",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.urls]
Homepage = "https://github.com/anoopkcn/plotreset"
Documentation = "https://github.com/anoopkcn/plotreset"
Repository = "https://github.com/anoopkcn/plotreset.git"
Issues = "https://github.com/anoopkcn/plotreset/issues"
[tool.uv]
dev-dependencies = [
"ipykernel>=6.29.5",
"pytest>=8.3.3",
"ruff>=0.6.9",
]
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"