docs: cleanup: Rephrase and correct typos
[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-core']
26 build-backend = 'poetry.core.masonry.api'
27
28 [tool.poetry]
29 name = 'barectf'
30 version = '3.2.0-dev'
31 description = 'Generator of ANSI C tracers which output CTF data streams'
32 license = 'MIT'
33 authors = ['Philippe Proulx <eeppeliteloop@gmail.com>']
34 homepage = 'https://barectf.org/'
35 repository = 'https://github.com/efficios/barectf/'
36 keywords = [
37 'ctf',
38 'generator',
39 'tracing',
40 'bare-metal',
41 'bare-machine',
42 ]
43 classifiers = [
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 ]
53 packages = [{include = 'barectf'}]
54
55 [tool.poetry.dependencies]
56 python = '^3.8'
57 termcolor = '^1.1'
58 pyyaml = '^6.0'
59 jsonschema = '^3.2'
60 setuptools = '*'
61 jinja2 = '^3.0'
62
63 [tool.poetry.dev-dependencies]
64 flake8 = '*'
65 pylint = '*'
66 mypy = '*'
67 pytest = '^6'
68 pytest-xdist = '^2'
69
70 [tool.poetry.scripts]
71 barectf = 'barectf.cli:_run'
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/'
77 'Commercial support' = 'https://www.efficios.com/contact/'
This page took 0.03411 seconds and 4 git commands to generate.