From 6842c794719373952f37261693e51039970900e3 Mon Sep 17 00:00:00 2001 From: Gernot Bauer Date: Fri, 18 Feb 2022 17:37:37 +0100 Subject: [PATCH 1/2] Add pyproject.toml --- pyproject.toml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..d99fa39 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[build-system] +requires = ["maturin>=0.12,<0.13"] +build-backend = "maturin" + +[tool.maturin] +bindings = "pyo3" +manifest-path = "build_wheel/Cargo.toml" \ No newline at end of file From 023b3d4cf7dac195e6618c77bb9641adf94df31f Mon Sep 17 00:00:00 2001 From: Gernot Bauer Date: Fri, 18 Feb 2022 17:38:47 +0100 Subject: [PATCH 2/2] Add entry for changelog --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5e12a2..f466fbe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unreleased] +### Added +- Add `pyproject.toml` + + ## [0.1.4] - 2022-02-18 ### Fixed - Fix state constructor for `T`, `p`, `V`, `x_i` specification. [#26](https://github.com/feos-org/feos-core/pull/26)