-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (35 loc) · 1.04 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
[project]
name = "StonerPlots"
dynamic = ["version"]
authors = [
{ name="Gavin Burnell", email="[email protected]" },
]
description = "This is a fork of scienceplots and provides a range of matplotlib styles for plotting physics..."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = [
"matplotlib-style-sheets",
"matplotlib-figures",
"scientific-papers",
"thesis-template",
"matplotlib-styles",
"python",
]
[project.urls]
Homepage = "https://github.com/stonerlab/stonerplots/"
Issues = "https://github.com/stonerlab/stonerplots/issues"
[build-system]
requires = ["setuptools>=65.0", "setuptools-scm>=8.0" ]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "stonerplots.__version__"}
[tool.setuptools.packages.find]
where = ["src"]