-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 1.19 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fxpmath"
dynamic = ["version"]
description = "A python library for fractional fixed-point (base 2) arithmetic and binary manipulation with Numpy compatibility."
readme = "README.md"
requires-python = ">=3.9"
authors = [
{ name = "francof2a", email = "empty@empty.com" }
]
license = "MIT"
keywords = ["fixed point", "fractional", "math", "python", "fxpmath", "fxp", "arithmetic", "FPGA", "DSP"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics"
]
dependencies = ["numpy>=1.26.4,<3"]
[project.urls]
Homepage = "https://github.com/francof2a/fxpmath"
Repository = "https://github.com/francof2a/fxpmath"
Download = "https://github.com/francof2a/fxpmath/releases"
[tool.setuptools.packages.find]
include = ["fxpmath*"]
[tool.setuptools.dynamic]
version = { attr = "fxpmath.__version__" }
[tool.setuptools.package-data]
fxpmath = ["py.typed"]