trajopt 0.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2 @@
1
+ venv/
2
+ .venv
trajopt-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: trajopt
3
+ Version: 0.0.1
4
+ Summary: TrajOpt
5
+ Author-email: Skye Mceowen <skye@mceowen.io>
6
+ Requires-Python: >=3.8
7
+ Requires-Dist: setuptools
@@ -0,0 +1,15 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "trajopt"
7
+ version = "0.0.1"
8
+ description = "TrajOpt"
9
+ requires-python = ">=3.8"
10
+ authors = [{ name = "Skye Mceowen", email = "skye@mceowen.io" }]
11
+ dependencies = ["setuptools"]
12
+
13
+ [tool.scikit-build]
14
+ install.components = ["python"]
15
+ wheel.install-dir = "trajopt"
File without changes
@@ -0,0 +1,2 @@
1
+ def add_one(number):
2
+ return number + 1