-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- update building method
- Loading branch information
Showing
3 changed files
with
31 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "config-state" | ||
version = "1.0.2" | ||
authors = [ | ||
{ name = "Nicolas Pinchaud", email = "[email protected]" }, | ||
] | ||
description = """ | ||
config-state is a Python module that helps implement classes using the ConfigState pattern. | ||
This pattern enhances classes by: | ||
1.Adding structured configuration management | ||
2.Providing state handling capabilities | ||
3.Enabling object creation from configuration files | ||
4.Offering fine-grained control over how objects are serialized and deserialized""" | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
dependencies = [ | ||
"pyyaml", | ||
] | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"Operating System :: OS Independent", | ||
] | ||
|
||
[tool.setuptools.packages.find] | ||
exclude = ["tests", "examples"] |