-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 1.09 KB
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
[build-system]
requires = ["uv_build>=0.9.9,<0.10.0"]
build-backend = "uv_build"
[project]
name = 'simplefractions'
version = "1.4.0"
description = 'Find the simplest fraction for a given float or interval'
readme = 'README.md'
requires-python = '>=3.10'
authors = [{ name = 'Mark Dickinson', email = 'dickinsm@gmail.com' }]
keywords = [
'fractions',
'continued fractions',
'approximation',
]
classifiers = [
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Mathematics',
]
[project.urls]
source = 'https://github.com/mdickinson/simplefractions'
[dependency-groups]
dev = [
"coverage>=7.6.1",
"mypy>=1.14.1",
"pytest>=8.3.5",
]
[tool.coverage.run]
branch = true
source_pkgs = ["simplefractions"]
command_line = "-m pytest"
[tool.mypy]
packages = ["simplefractions"]
strict = true
[tool.pytest.ini_options]
addopts = ["--pyargs", "--import-mode=importlib"]
[tool.ruff.lint]
extend-select = ["I", "UP", "W"] # isort, pyupgrade, pycodestyle warnings