-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (44 loc) · 1.25 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
[build-system]
requires = [
"setuptools",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "msgpack-cxx"
authors = [{ name = "Alliander Dynamic Grid Calculation", email = "[email protected]" }]
description = "Repackaging of msgpack-cxx distributed via PyPI"
readme = "README.md"
license = { text = "BSL-1.0" }
classifiers = [
"Programming Language :: C++",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Boost Software License 1.0 (BSL-1.0)",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Topic :: File Formats",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"importlib-resources"
]
dynamic = [
"version"
]
[project.optional-dependencies]
dev = [
"pytest"
]
[project.urls]
Home-page = "https://msgpack.org/"
GitHub = "https://github.com/msgpack/msgpack-c/tree/cpp_master"
Documentation = "https://github.com/msgpack/msgpack-c/tree/cpp_master"
[tool.setuptools.packages.find]
where = ["src"]
namespaces = true
[tool.setuptools.dynamic]
version = {file = "PYPI_VERSION"}
[tool.setuptools.package-data]
msgpack_cxx = ["include/**/*"]