Skip to content

Commit

Permalink
add pyproject toml
Browse files Browse the repository at this point in the history
Signed-off-by: Martijn Govers <[email protected]>
  • Loading branch information
mgovers committed Sep 21, 2023
1 parent bf2da4b commit 2a8ba88
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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 = "MIT" }
classifiers = [
"Programming Language :: C++",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"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 = "http://github.com/nlohmann/json"
GitHub = "http://github.com/nlohmann/json"
Documentation = "http://nlohmann.github.io/json/"

[tool.setuptools.packages.find]
where = ["src"]
namespaces = true

[tool.setuptools.dynamic]
version = {file = "PYPI_VERSION"}

[tool.setuptools.package-data]
nlohmann_json = ["include/**/*"]

0 comments on commit 2a8ba88

Please sign in to comment.