forked from hermitdemschoenenleben/pyrp3
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
59 lines (53 loc) · 1.54 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[build-system]
requires = ["setuptools >= 30.3.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyrp3"
version = "2.1.0"
description = "Python utilities for RedPitaya"
authors = [
{ name = "Pierre Cladé", email = "[email protected]" },
{ name = "Benjamin Wiegand", email = "[email protected]" },
{ name = "Bastian Leykauf", email = "[email protected]" },
{ name = "Doron Behar", email = "[email protected]" },
{ name = "Florian Agbuya", email = "[email protected]" },
]
maintainers = [
{ name = "Bastian Leykauf", email = "[email protected]" },
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"cached_property>=1.5.2,<2.0",
"numpy>=1.21.5,<2.0",
"rpyc>=6.0.0,<7.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering",
]
keywords = ["RedPitaya", "FPGA", "zynq"]
[project.optional-dependencies]
dev = [
"black>=22.8.0",
"pre-commit>=2.20.0",
"flake8>=5.0.4",
"isort>=5.10.1",
"flake8-pyproject>=1.2.3",
]
[tool.setuptools]
packages = ["pyrp3"]
[project.urls]
homepage = "https://github.com/linien-org/pyrp3/"
repository = "https://github.com/linien-org/pyrp3/"
[tool.flake8]
max-line-length = 88
extend-ignore = "E203"
docstring-convention = "numpy"
[tool.isort]
profile = "black"