-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
78 lines (67 loc) · 1.83 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# This file is a part of marzer/soagen and is subject to the the terms of the MIT license.
# Copyright (c) Mark Gillard <[email protected]>
# See https://github.com/marzer/soagen/blob/master/LICENSE.txt for the full license text.
# SPDX-License-Identifier: MIT
# windows:
# python -m build && twine upload dist/* && rmdir /S /Q dist
[build-system]
requires = ['setuptools', 'wheel']
build-backend = 'setuptools.build_meta'
[project]
name = 'soagen'
requires-python = '>=3.9'
description = 'Struct-of-Arrays for C++.'
authors = [{ name = "Mark Gillard", email = "[email protected]" }]
license = { text = 'MIT' }
keywords = [
'c++',
'soa',
'struct-of-arrays',
'structure-of-arrays',
'struct of arrays',
'structure of arrays',
'parallel-arrays',
'parallel arrays',
'std::vector',
]
classifiers = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: C++',
'Topic :: Software Development :: Code Generators',
'Topic :: Utilities',
]
dependencies = [
'misk >= 0.8.1',
'tomli',
'schema != 0.7.5',
'colorama',
'trieregex',
]
dynamic = ['version', 'readme']
[project.scripts]
soagen = 'soagen:main'
[project.urls]
Source = 'https://github.com/marzer/soagen'
Tracker = 'https://github.com/marzer/soagen/issues'
Funding = 'https://github.com/sponsors/marzer'
[tool.setuptools]
zip-safe = true
[tool.setuptools.dynamic]
version = { file = 'src/soagen/version.txt' }
readme = { file = [
'README.md',
'CHANGELOG.md',
], content-type = 'text/markdown' }
[tool.setuptools.packages.find]
where = ["src"]
namespaces = true
[tool.setuptools.package-data]
"*" = ['*.txt', '*.hpp', '.clang-format']
[tool.setuptools.exclude-package-data]
"*" = ['meson.build', '.git*']
[tool.black]
line-length = 120
target-version = ['py39']
skip-string-normalization = true
skip-magic-trailing-comma = true