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.
- flooride-0.0.1/PKG-INFO +6 -0
- flooride-0.0.1/flooride.egg-info/PKG-INFO +6 -0
- flooride-0.0.1/flooride.egg-info/SOURCES.txt +7 -0
- flooride-0.0.1/flooride.egg-info/dependency_links.txt +1 -0
- flooride-0.0.1/flooride.egg-info/top_level.txt +1 -0
- flooride-0.0.1/main.cpp +9 -0
- flooride-0.0.1/pyproject.toml +10 -0
- flooride-0.0.1/setup.cfg +4 -0
- flooride-0.0.1/setup.py +13 -0
flooride-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
flooride
|
flooride-0.0.1/main.cpp
ADDED
|
@@ -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"
|
flooride-0.0.1/setup.cfg
ADDED
flooride-0.0.1/setup.py
ADDED
|
@@ -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
|
+
)
|