flooride 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,6 @@
1
+ Metadata-Version: 2.4
2
+ Name: flooride
3
+ Version: 0.0.1
4
+ Summary: light weight & low level ai framework
5
+ Author-email: blanco <joemamasofat676767@gmail.com>
6
+ License-Expression: MIT
@@ -0,0 +1,6 @@
1
+ Metadata-Version: 2.4
2
+ Name: flooride
3
+ Version: 0.0.1
4
+ Summary: light weight & low level ai framework
5
+ Author-email: blanco <joemamasofat676767@gmail.com>
6
+ License-Expression: MIT
@@ -0,0 +1,7 @@
1
+ main.cpp
2
+ pyproject.toml
3
+ setup.py
4
+ flooride.egg-info/PKG-INFO
5
+ flooride.egg-info/SOURCES.txt
6
+ flooride.egg-info/dependency_links.txt
7
+ flooride.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ flooride
@@ -0,0 +1,9 @@
1
+ #include <pybind11/pybind11.h>
2
+ #include <string>
3
+
4
+ std::string test(){
5
+ return "the mat";
6
+ }
7
+ PYBIND11_MODULE(flooride, m){
8
+ m.def("test", &test, "Returns 'the mat'");
9
+ }
@@ -0,0 +1,10 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel", "pybind11>=2.10"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "flooride"
7
+ version = "0.0.1"
8
+ description = "light weight & low level ai framework"
9
+ authors = [{name = "blanco", email = "joemamasofat676767@gmail.com"}]
10
+ license = "MIT"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,13 @@
1
+ from setuptools import setup, Extension
2
+ from pybind11.setup_helpers import Pybind11Extension, build_ext
3
+
4
+ ext_module = Pybind11Extension(
5
+ "flooride",
6
+ ["main.cpp"],
7
+ )
8
+ setup(
9
+ name="flooride",
10
+ version="0.0.1",
11
+ ext_modules=[ext_module],
12
+ cmdclass={"build_ext": build_ext},
13
+ )