-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
symforce-sym and skymarshal are pure pyproject.toml. Hatchling is apparently the current sota but I wasn't going that far Also add py.typed to our packages to mark them as typed Have checked skymarshal and symforce-sym wheels, will check symforce before merging Topic: sf-packaging GitOrigin-RevId: 75b7e92d6b9ace5ba481c9960d06b7b9b1bb7825
- Loading branch information
1 parent
4cc4add
commit bd60d57
Showing
13 changed files
with
88 additions
and
104 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
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
22 changes: 22 additions & 0 deletions
22
symforce/codegen/backends/python/templates/pyproject.toml.jinja
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,22 @@ | ||
{# ---------------------------------------------------------------------------- | ||
# SymForce - Copyright 2022, Skydio, Inc. | ||
# This source code is under the Apache 2.0 license found in the LICENSE file. | ||
# ---------------------------------------------------------------------------- #} | ||
|
||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "{{ package_name }}" | ||
description = "{{ description }} (installed by SymForce)" | ||
authors = [{ name = "Skydio, Inc.", email = "[email protected]" }] | ||
license = { text = "Apache 2.0" } | ||
version = "{{ version }}" | ||
dependencies = ["numpy"] | ||
requires-python = ">=2.7" | ||
|
||
[project.urls] | ||
SymForce = "https://symforce.org" | ||
"Bug Tracker" = "https://github.com/symforce-org/symforce/issues" | ||
Source = "https://github.com/symforce-org/symforce/tree/main/gen/python" |
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
Empty file.
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 = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "skymarshal" | ||
description = "Python implementation of marshalling for LCM messages" | ||
version = "0.9.0" | ||
authors = [{ name = "Skydio, Inc." }] | ||
license = { text = "LGPL-2.1-or-later" } | ||
readme = "README.md" | ||
classifiers = [ | ||
"Intended Audience :: Developers", | ||
"Development Status :: 4 - Beta", | ||
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Software Development :: Code Generators", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Operating System :: OS Independent", | ||
] | ||
requires-python = ">=3.8" | ||
dependencies = ["argh", "jinja2", "numpy", "ply"] | ||
|
||
[project.urls] | ||
"Bug Tracker" = "https://github.com/symforce-org/symforce/issues" | ||
Source = "https://github.com/symforce-org/symforce/tree/main/third_party/skymarshal" | ||
|
||
[tool.setuptools.packages.find] | ||
include = ["skymarshal", "skymarshal.*"] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.