-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to pyproject.toml entirely (#25)
* Switch to pyproject.toml entirely * Switch to latest setuptools-rust release * README: Change minimum python version to 3.7
- Loading branch information
Showing
4 changed files
with
55 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,39 @@ | ||
[build-system] | ||
requires = ["setuptools", "wheel", "setuptools-rust"] | ||
requires = ["setuptools", "setuptools-rust"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "configcrunch" | ||
version = "1.0.4" | ||
description = "Configuration parser based on YAML-Files with support for variables, overlaying and hierarchies" | ||
readme = "README.rst" | ||
requires-python = ">=3.7" | ||
license = {file = "LICENSE"} | ||
authors = [ | ||
{name = "Marco Köpcke", email = "[email protected]"} | ||
] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Programming Language :: Python", | ||
"Programming Language :: Rust", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
] | ||
dependencies = [ | ||
"schema >= 0.7" | ||
] | ||
|
||
[project.urls] | ||
Repository = "https://github.com/theCapypara/configcrunch" | ||
Documentation = "https://configcrunch.readthedocs.io" | ||
|
||
[tool.setuptools.package-dir] | ||
configcrunch = "configcrunch" | ||
|
||
[[tool.setuptools-rust.ext-modules]] | ||
target = "configcrunch._main" |