chore: add maturin metadata

This commit is contained in:
DataHearth 2022-12-07 19:22:01 +00:00
parent 4c4d386cca
commit 1aef203f1e
No known key found for this signature in database
GPG Key ID: E88FD356ACC5F3C4
3 changed files with 21 additions and 2 deletions

3
.gitignore vendored
View File

@ -1,2 +1 @@
/target
pyproject.toml
/target

View File

@ -7,6 +7,7 @@ license = "GPL-3.0-or-later"
description = "Small CLI tool to initialize a python project"
homepage = "https://gitea.antoine-langlois.net/DataHeart/pynit"
repository = "https://gitea.antoine-langlois.net/DataHeart/pynit"
keywords = ["automation", "CLI"]
[dependencies]
anyhow = "1.0"

19
pyproject.toml Normal file
View File

@ -0,0 +1,19 @@
[build-system]
requires = ["maturin>=0.14,<0.15"]
build-backend = "maturin"
[project]
name = "pynit"
version = "0.1.0"
requires-python = ">=3.7"
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]