forked from graphcore-research/gfloat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (29 loc) · 909 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ['gfloat']
package-dir = {"" = "src"}
[project]
name = "gfloat"
version = "0.0.5"
authors = [
{name = "Andrew Fitzgibbon", email = "[email protected]"},
]
description = "Generic floating point handling in Python"
readme = "README.md"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
]
requires-python = ">=3.8.1"
dynamic = ["dependencies", "optional-dependencies"]
[tool.setuptools.dynamic]
# version = {attr = "gfloat.VERSION"} # Wow: https://github.com/pypa/setuptools/issues/1724
dependencies = {file = ["requirements.txt"]}
optional-dependencies = {test = {file = ["requirements-test.txt"]}}
[tool.black]
line-length = 88
fast = true