README.adoc: "normand" -> "Normand"
[normand.git] / pyproject.toml
1 # SPDX-FileCopyrightText: 2023 Philippe Proulx <eeppeliteloop@gmail.com>
2 # SPDX-License-Identifier: MIT
3
4 [tool.poetry]
5 name = 'normand'
6 version = '0.23.0'
7 description = 'Text-to-binary processor with its own language'
8 license = 'MIT'
9 authors = ['Philippe Proulx <eeppeliteloop@gmail.com>']
10 repository = 'https://github.com/efficios/normand'
11 keywords = [
12 'normand',
13 'binary',
14 ]
15 classifiers = [
16 'Development Status :: 3 - Alpha',
17 'Environment :: Console',
18 'Intended Audience :: Developers',
19 'License :: OSI Approved :: MIT License',
20 'Natural Language :: English',
21 'Operating System :: OS Independent',
22 'Topic :: Software Development :: Compilers',
23 ]
24 packages = [{include = 'normand'}]
25
26 [tool.poetry.dependencies]
27 python = '^3.4'
28
29 [tool.poetry.scripts]
30 normand = 'normand.normand:_run_cli'
31
32 [tool.poetry.urls]
33 'Bug tracker' = 'https://github.com/efficios/normand/issues'
34 'Code review' = 'https://review.lttng.org/admin/repos/normand'
35
36 [tool.isort]
37 profile = 'black'
38 length_sort = true
39
40 [tool.pyright]
41 typeCheckingMode = 'strict'
42 reportTypeCommentUsage = false
43
44 [build-system]
45 requires = ['poetry-core']
46 build-backend = 'poetry.core.masonry.api'
This page took 0.037821 seconds and 4 git commands to generate.