-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (43 loc) · 1.36 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
[build-system]
requires = ["flit_core"]
build-backend = "flit_core.buildapi"
[project]
name = "matplotlib-pgfutils"
description = "Utilities for generating PGF figures from Matplotlib"
license = {text = "BSD"}
authors = [
{name = "Blair Bonnett", email="[email protected]"}
]
readme = "README.md"
dependencies = ["matplotlib"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Visualization",
]
dynamic = ["version"]
[project.urls]
Documentation = "https://matplotlib-pgfutils.readthedocs.io/"
Repository = "https://github.com/bcbnz/matplotlib-pgfutils.git"
"Issue Tracker" = "https://github.com/bcbnz/matplotlib-pgfutils/issues"
[tool.flit.module]
name = "pgfutils"
dist-name = "matplotlib-pgfutils"
[tool.flit.external-data]
directory = "data"
[tool.flit.sdist]
exclude = [".editorconfig", ".flake8", ".github", ".gitignore", "readthedocs.yml"]
[tool.isort]
profile = "black"
atomic = true
combine_as_imports = true
force_sort_within_sections = true
lines_after_imports = 2
[tool.pytest.ini_options]
addopts = "-v --cov=pgfutils --cov-report html --cov-report term --cov-branch"
filterwarnings = [
"ignore:The distutils package is deprecated",
"ignore:numpy.ndarray size changed"
]