Commit | Line | Data |
---|---|---|
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] | |
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.5' | |
58 | termcolor = '^1.1' | |
59 | pyyaml = '^5.3' | |
60 | setuptools = '*' | |
61 | ||
62 | [tool.poetry.scripts] | |
63 | barectf = 'barectf.cli:run' | |
64 | ||
65 | [tool.poetry.urls] | |
66 | 'Bug tracker' = 'https://github.com/efficios/barectf/issues/' | |
67 | 'Code review' = 'https://review.lttng.org/admin/repos/barectf' | |
68 | 'Continuous integration' = 'https://ci.lttng.org/job/barectf_master_build/' |