We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf03482 commit f45ed53Copy full SHA for f45ed53
.gitignore
@@ -1,3 +1,8 @@
1
__pycache__
2
.vscode
3
.idea
4
+
5
+# Python packaging build directories
6
+build/*
7
+dist/*
8
+ml_compiler_opt.egg-info/*
pyproject.toml
@@ -0,0 +1,22 @@
+[build-system]
+requires = ["setuptools"]
+build-backend = "setuptools.build_meta"
+[project]
+name = "ml-compiler-opt"
+description = "Tooling for ML in LLVM"
+readme = "README.md"
9
+requires-python = ">=3.8,<3.11"
10
+dependencies = [
11
+ "absl-py>=1.0.0",
12
+ "gin-config>=0.5.0",
13
+ "psutil>=5.9.0",
14
+ "tf-agents>=0.16.0",
15
+ "tensorflow>=2.12.0",
16
+ "dm-reverb>=0.11.0"
17
+]
18
+version="0.0.1"
19
20
+[tool.setuptools.packages.find]
21
+include = ["compiler_opt*"]
22
0 commit comments