-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #242 from eikesr/master
Update generator to work with python 3.12
- Loading branch information
Showing
5 changed files
with
39 additions
and
42 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,6 +1,36 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools>=42", | ||
"wheel" | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "flatdata-generator" | ||
version = "0.4.6" | ||
description = "Generate source code for C++, Rust, Go or Python from a Flatdata schema file" | ||
readme = "README.md" | ||
license = "" | ||
authors = [ | ||
{ name = "Flatdata Developers" }, | ||
] | ||
build-backend = "setuptools.build_meta" | ||
classifiers = [ | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3", | ||
] | ||
dependencies = [ | ||
"jinja2>=2.2", | ||
"pyparsing>=2.0", | ||
] | ||
|
||
[project.scripts] | ||
flatdata-generator = "flatdata.generator.app:main" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/heremaps/flatdata" | ||
|
||
[tool.hatch.build.targets.sdist] | ||
include = [ | ||
"/flatdata", | ||
] | ||
|
||
[tool.hatch.build.targets.wheel] | ||
packages = ["flatdata"] |
This file was deleted.
Oops, something went wrong.
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