[build-system]
requires = ["maturin>=1,<2"]
build-backend = "maturin"
[project]
name = "evnx"
dynamic = ["version"]
description = "evnx — blazing-fast environment variable manager and inspector built in Rust"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
keywords = ["cli", "devtools", "environment", "env", "dotenv", "evnx"]
authors = [
{ name = "Ajit Kumar", email = "ajitkumar.pu@gmail.com" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Rust",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/urwithajit9/evnx"
Repository = "https://github.com/urwithajit9/evnx"
"Bug Tracker" = "https://github.com/urwithajit9/evnx/issues"
Changelog = "https://github.com/urwithajit9/evnx/blob/main/CHANGELOG.md"
Documentation = "https://github.com/urwithajit9/evnx#readme"
[tool.maturin]
bindings = "bin"
features = ["full"]
include = [
"LICENSE",
"README.md",
"CHANGELOG.md",
"Cargo.toml",
"Cargo.lock",
"src/**/*",
]
exclude = [
"target/**",
".github/**",
"tests/**",
"benches/**",
"scripts/**",
".env*",
]