-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
31 lines (26 loc) · 882 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
[build-system]
requires = ['setuptools>=61', 'setuptools-scm[toml]>=6.2', 'wheel']
build-backend = 'setuptools.build_meta'
[project]
name = 'simplefractions'
description = 'Find the simplest fraction for a given float or interval'
readme = 'README.md'
requires-python = '>=3.6'
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',
]
dynamic = ['version']
[project.urls]
source = 'https://github.com/mdickinson/simplefractions'
[tool.black]
target-version = ['py36']
[tool.isort]
profile = 'black'
order_by_type = 'False'
[tool.setuptools_scm]
version_scheme = 'release-branch-semver'