-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
37 lines (35 loc) · 947 Bytes
/
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
[build-system]
requires = ["flit_core >=2,<4"] # for pins see: https://flit.pypa.io/en/stable/pyproject_toml.html#build-system-section
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "reportengine"
author = "Zahari Kassabov"
author-email = "[email protected]"
home-page = "https://github.com/NNPDF/reportengine/"
classifiers = [
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7"
]
description-file="README.md"
requires = [
"jinja2",
"ruamel.yaml>=0.15",
"matplotlib",
"pandas",
"pygments",
"blessings",
"dask[distributed]",
]
[tool.flit.metadata.requires-extra]
test = [
"pytest",
"hypothesis",
]
dashboard = [
"bokeh!=3.0.*,>=2.4.2"
]