-
Notifications
You must be signed in to change notification settings - Fork 451
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (39 loc) · 947 Bytes
/
Copy pathpyproject.toml
File metadata and controls
49 lines (39 loc) · 947 Bytes
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "handcalcs"
authors = [{name = "Connor Ferster", email = "connorferster@gmail.com"}]
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",
]
doc = ["sphinx"]
[tool.coverage.paths]
source = ['handcalcs', '*/site-packages']
[tool.coverage.run]
branch = true
source = ['handcalcs']
[tool.coverage.report]
show_missing = true
[dependency-groups]
dev = [
"pint>=0.24.4",
"pytest>=8.4.1",
"pytest-cov>=6.2.1",
"sympy>=1.14.0",
"jupyterlab>=4.4.4",
"forallpeople>=2.7.1",
"black>=25.1.0",
]