forked from FPGAwars/apio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (41 loc) · 1.15 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
[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 :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python']
description-file = "README.md"
requires-python = ">=3.7"
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',
'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 = ['py38']
[tool.pylint.messages_control]
disable = [
]