-
Notifications
You must be signed in to change notification settings - Fork 139
/
pyproject.toml
73 lines (46 loc) · 1.33 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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "apio"
author = "Jesus Arroyo"
author-email = "[email protected] "
home-page = "https://github.com/FPGAwars/apio"
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python',
'Natural Language :: English',
'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)',
]
description-file = "README.md"
requires-python = ">=3.9"
requires = [
'click==8.1.3',
'semantic_version==2.9.0',
'requests==2.28.2',
'colorama==0.4.6',
'pyserial==3.5',
'wheel>=0.35.0,<1',
'configobj==5.0.8',
'varname==0.13.3',
'scons==4.2.0'
]
[tool.flit.sdist]
exclude = ["test-examples/"]
[tool.flit.metadata.requires-extra]
blackiceprog = ['blackiceprog==2.0.0']
litterbox = ['litterbox==0.2.2']
tinyfpgab = ['tinyfpgab==1.1.0']
tinyprog = ['tinyprog==1.0.21']
icefunprog = ['icefunprog==2.0.3']
[tool.flit.scripts]
apio = "apio.__main__:cli"
[tool.black]
line-length = 79
target-version = ['py39']
[tool.pylint.messages_control]
disable = [
]