-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
37 lines (33 loc) · 991 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
34
35
36
37
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "regmap"
version = "0.1.0"
description = "A gateware-based I2C bus and device control library built on Migen"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["FPGA", "Gateware", "I2C", "SMB"]
authors = [
{ name = "Charles-Henri Mousset", email = "[email protected]" },
]
classifiers = [
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 2 - Pre-Alpha",
"Topic :: System :: Hardware"
]
license = "BSD-2-Clause"
[project.urls]
Homepage = "https://github.com/chmousset/python-regmap"
[project.optional-dependencies]
doc = [
"sphinx>=6.2.1",
"sphinx-rtd-theme>=1.2.1",
"recommonmark>=0.7.1",
"sphinx_autodoc_typehints>=1.23.0",
"sphinxcontrib_wavedrom>=3.0.4",
"sphinxcontrib_svgbob>=0.2.1"
]
[tool.setuptools.packages.find]
include = ["regmap"]