-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
45 lines (41 loc) · 1.31 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "plothist"
authors = [
{name = "Cyrille Praz", email = "[email protected]"},
{name = "Tristan Fillinger", email = "[email protected]"},
]
readme = "README.rst"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
]
dynamic = ["version", "description"]
requires-python = ">=3.7"
dependencies = [
"boost-histogram~=1.4.0",
"numpy>=1.14.5",
"matplotlib>=3.0",
"pyyaml>=5.3.1",
"scipy>=1.6.0",
"requests>=2.25.0",
]
[project.urls]
Homepage = "https://github.com/cyrraz/plothist"
Documentation = "https://plothist.readthedocs.io/"
"Bug Tracker" = "https://github.com/cyrraz/plothist/issues"
[tool.codespell]
skip = '*.pdf,./test/*,*.svg,./docs/html/*'
quiet-level = 3
write-changes = true
[project.scripts]
install_latin_modern_fonts = "plothist.scripts.install_latin_modern_fonts:install_latin_modern_fonts"
plothist_make_examples = "plothist.scripts.make_examples:make_examples"