-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
41 lines (39 loc) · 914 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
38
39
40
41
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "pyblock"
license = "BSD-3-Clause"
author = "James S. Spencer"
requires=[
"numpy",
]
requires-python = "~=3.6"
description-file = "README.rst"
home-page = "https://pyblock.readthedocs.io"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
]
[tool.flit.metadata.requires-extra]
test = [
"codecov",
"coverage",
"pytest",
"pytest-cov",
]
opts = [
"matplotlib",
"pandas",
]
doc = [
"sphinx",
]