-
Notifications
You must be signed in to change notification settings - Fork 435
/
pyproject.toml
54 lines (43 loc) · 992 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
42
43
44
45
46
47
48
49
50
51
52
53
54
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "handcalcs"
authors = [{name = "Connor Ferster", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: Apache Software License"]
dynamic = ["version", "description"]
dependencies = [
"more_itertools",
"innerscope >= 0.7.0",
"pyparsing"
]
[project.urls]
Source = "https://github.com/connorferster/handcalcs"
[project.optional-dependencies]
exporters = [
"nb-hideinputs",
]
test = [
"pytest >= 8.0.0",
"pytest-cov >= 4.1.0",
"coverage[toml] >= 5.5.0",
"pint >= 0.23",
"sympy",
]
dev = [
"jupyterlab >= 4.0.0",
"forallpeople >= 2.0",
"black",
"pint >= 0.23",
"sympy",
]
doc = ["sphinx"]
[tool.coverage.paths]
source = ['handcalcs', '*/site-packages']
[tool.coverage.run]
branch = true
source = ['handcalcs']
[tool.coverage.report]
show_missing = true