-
Notifications
You must be signed in to change notification settings - Fork 210
/
pyproject.toml
41 lines (39 loc) · 1.41 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
[project]
name = "migen"
version = "0.9.2"
description = "Python toolbox for building complex digital hardware"
readme = "README.md"
keywords = ["HDL", "ASIC", "FPGA", "hardware design"]
authors = [{name = "Sebastien Bourdeauducq", email = "[email protected]"}]
license = {text = "BSD-2-Clause"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.3"
dependencies = [
"colorama",
]
[project.urls]
Documentation = "https://m-labs.hk/migen/manual"
"Source code" = "https://github.com/m-labs/migen"
"Issue tracker" = "https://github.com/m-labs/migen/issues"
[build-system]
requires = ["setuptools>=65.5"]
build-backend = "setuptools.build_meta"