docs: cleanup: Rephrase and correct typos
[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]
da3db9cc
MJ
25requires = ['poetry-core']
26build-backend = 'poetry.core.masonry.api'
f4286907
PP
27
28[tool.poetry]
29name = 'barectf'
974ffe0c 30version = '3.2.0-dev'
d3ed7014 31description = 'Generator of ANSI C tracers which output CTF data streams'
f4286907
PP
32license = 'MIT'
33authors = ['Philippe Proulx <eeppeliteloop@gmail.com>']
f4286907
PP
34homepage = 'https://barectf.org/'
35repository = 'https://github.com/efficios/barectf/'
36keywords = [
37 'ctf',
38 'generator',
39 'tracing',
40 'bare-metal',
41 'bare-machine',
42]
43classifiers = [
44 'Development Status :: 6 - Mature',
45 'Environment :: Console',
46 'Intended Audience :: Developers',
47 'License :: OSI Approved :: MIT License',
48 'Natural Language :: English',
49 'Operating System :: OS Independent',
50 'Programming Language :: C',
51 'Topic :: Software Development :: Code Generators',
52]
53packages = [{include = 'barectf'}]
54
55[tool.poetry.dependencies]
096e7e5a 56python = '^3.8'
f4286907 57termcolor = '^1.1'
f9d5d8b6 58pyyaml = '^6.0'
6839ffba 59jsonschema = '^3.2'
f4286907 60setuptools = '*'
e0d03156 61jinja2 = '^3.0'
f4286907 62
37e91823
PP
63[tool.poetry.dev-dependencies]
64flake8 = '*'
0ac184f9 65pylint = '*'
61ea6662 66mypy = '*'
af01d03f
PP
67pytest = '^6'
68pytest-xdist = '^2'
37e91823 69
f4286907 70[tool.poetry.scripts]
c54d6f30 71barectf = 'barectf.cli:_run'
f4286907
PP
72
73[tool.poetry.urls]
74'Bug tracker' = 'https://github.com/efficios/barectf/issues/'
75'Code review' = 'https://review.lttng.org/admin/repos/barectf'
76'Continuous integration' = 'https://ci.lttng.org/job/barectf_master_build/'
2fe524ac 77'Commercial support' = 'https://www.efficios.com/contact/'
This page took 0.02541 seconds and 4 git commands to generate.