Add dynamic array tracing tests
[deliverable/barectf.git] / pyproject.toml
1 # The MIT License (MIT)
2 #
3 # Copyright (c) 2020 Philippe Proulx <pproulx@efficios.com>
4 #
5 # Permission is hereby granted, free of charge, to any person obtaining
6 # a copy of this software and associated documentation files (the
7 # "Software"), to deal in the Software without restriction, including
8 # without limitation the rights to use, copy, modify, merge, publish,
9 # distribute, sublicense, and/or sell copies of the Software, and to
10 # permit persons to whom the Software is furnished to do so, subject to
11 # the following conditions:
12 #
13 # The above copyright notice and this permission notice shall be
14 # included in all copies or substantial portions of the Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19 # IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20 # CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21 # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22 # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23
24 [build-system]
25 requires = ['poetry>=0.12']
26 build-backend = 'poetry.masonry.api'
27
28 [tool.poetry]
29 name = 'barectf'
30 version = '2.3.1'
31 description = 'Generator of ANSI C tracers which output CTF'
32 license = 'MIT'
33 authors = ['Philippe Proulx <eeppeliteloop@gmail.com>']
34 readme = 'README.md'
35 homepage = 'https://barectf.org/'
36 repository = 'https://github.com/efficios/barectf/'
37 keywords = [
38 'ctf',
39 'generator',
40 'tracing',
41 'bare-metal',
42 'bare-machine',
43 ]
44 classifiers = [
45 'Development Status :: 6 - Mature',
46 'Environment :: Console',
47 'Intended Audience :: Developers',
48 'License :: OSI Approved :: MIT License',
49 'Natural Language :: English',
50 'Operating System :: OS Independent',
51 'Programming Language :: C',
52 'Topic :: Software Development :: Code Generators',
53 ]
54 packages = [{include = 'barectf'}]
55
56 [tool.poetry.dependencies]
57 python = '^3.6'
58 termcolor = '^1.1'
59 pyyaml = '^5.3'
60 jsonschema = '^3.2'
61 setuptools = '*'
62 jinja2 = '^2.11'
63
64 [tool.poetry.dev-dependencies]
65 flake8 = '*'
66 pylint = '*'
67 mypy = '*'
68 pytest = '^6'
69 pytest-xdist = '^2'
70
71 [tool.poetry.scripts]
72 barectf = 'barectf.cli:_run'
73
74 [tool.poetry.urls]
75 'Bug tracker' = 'https://github.com/efficios/barectf/issues/'
76 'Code review' = 'https://review.lttng.org/admin/repos/barectf'
77 'Continuous integration' = 'https://ci.lttng.org/job/barectf_master_build/'
This page took 0.030025 seconds and 4 git commands to generate.