README.adoc: "normand" -> "Normand"
[normand.git] / pyproject.toml
CommitLineData
d2d06893
MJ
1# SPDX-FileCopyrightText: 2023 Philippe Proulx <eeppeliteloop@gmail.com>
2# SPDX-License-Identifier: MIT
71aaa3f7
PP
3
4[tool.poetry]
5name = 'normand'
2acde24a 6version = '0.23.0'
71aaa3f7
PP
7description = 'Text-to-binary processor with its own language'
8license = 'MIT'
9authors = ['Philippe Proulx <eeppeliteloop@gmail.com>']
10repository = 'https://github.com/efficios/normand'
11keywords = [
12 'normand',
13 'binary',
14]
15classifiers = [
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]
24packages = [{include = 'normand'}]
25
26[tool.poetry.dependencies]
27python = '^3.4'
28
29[tool.poetry.scripts]
30normand = '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]
37profile = 'black'
38length_sort = true
39
40[tool.pyright]
41typeCheckingMode = 'strict'
42reportTypeCommentUsage = false
43
44[build-system]
45requires = ['poetry-core']
46build-backend = 'poetry.core.masonry.api'
This page took 0.023176 seconds and 4 git commands to generate.