Add dynamic array tracing tests
[deliverable/barectf.git] / pyproject.toml
CommitLineData
f4286907
PP
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]
25requires = ['poetry>=0.12']
26build-backend = 'poetry.masonry.api'
27
28[tool.poetry]
29name = 'barectf'
30version = '2.3.1'
31description = 'Generator of ANSI C tracers which output CTF'
32license = 'MIT'
33authors = ['Philippe Proulx <eeppeliteloop@gmail.com>']
34readme = 'README.md'
35homepage = 'https://barectf.org/'
36repository = 'https://github.com/efficios/barectf/'
37keywords = [
38 'ctf',
39 'generator',
40 'tracing',
41 'bare-metal',
42 'bare-machine',
43]
44classifiers = [
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]
54packages = [{include = 'barectf'}]
55
56[tool.poetry.dependencies]
f59eff81 57python = '^3.6'
f4286907
PP
58termcolor = '^1.1'
59pyyaml = '^5.3'
6839ffba 60jsonschema = '^3.2'
f4286907 61setuptools = '*'
de49021e 62jinja2 = '^2.11'
f4286907 63
37e91823
PP
64[tool.poetry.dev-dependencies]
65flake8 = '*'
0ac184f9 66pylint = '*'
61ea6662 67mypy = '*'
af01d03f
PP
68pytest = '^6'
69pytest-xdist = '^2'
37e91823 70
f4286907 71[tool.poetry.scripts]
c54d6f30 72barectf = 'barectf.cli:_run'
f4286907
PP
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.045673 seconds and 4 git commands to generate.