Make it possible to specify more that one byte with `%`
[normand.git] / pyproject.toml
1 # The MIT License (MIT)
2 #
3 # Copyright (c) 2023 Philippe Proulx <eeppeliteloop@gmail.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 [tool.poetry]
25 name = 'normand'
26 version = '0.16.0'
27 description = 'Text-to-binary processor with its own language'
28 license = 'MIT'
29 authors = ['Philippe Proulx <eeppeliteloop@gmail.com>']
30 repository = 'https://github.com/efficios/normand'
31 keywords = [
32 'normand',
33 'binary',
34 ]
35 classifiers = [
36 'Development Status :: 3 - Alpha',
37 'Environment :: Console',
38 'Intended Audience :: Developers',
39 'License :: OSI Approved :: MIT License',
40 'Natural Language :: English',
41 'Operating System :: OS Independent',
42 'Topic :: Software Development :: Compilers',
43 ]
44 packages = [{include = 'normand'}]
45
46 [tool.poetry.dependencies]
47 python = '^3.4'
48
49 [tool.poetry.scripts]
50 normand = 'normand.normand:_run_cli'
51
52 [tool.poetry.urls]
53 'Bug tracker' = 'https://github.com/efficios/normand/issues'
54 'Code review' = 'https://review.lttng.org/admin/repos/normand'
55
56 [tool.isort]
57 profile = 'black'
58 length_sort = true
59
60 [tool.pyright]
61 typeCheckingMode = 'strict'
62 reportTypeCommentUsage = false
63
64 [build-system]
65 requires = ['poetry-core']
66 build-backend = 'poetry.core.masonry.api'
This page took 0.032992 seconds and 5 git commands to generate.