Skip to content

Commit 3b9c795

Browse files
committed
repo: Refactor repo structure
Now we have two projects, each in their own folder: - codetracer-pure-python-recorder -- contains the old code - codetracer-python-recorder -- contains the Rust-based module
1 parent d2b0390 commit 3b9c795

File tree

23 files changed

+289
-52
lines changed

23 files changed

+289
-52
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
[build-system]
2+
requires = ["setuptools>=61"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "codetracer-pure-python-recorder"
7+
version = "0.1.0"
8+
description = "Pure-Python prototype recorder producing CodeTracer traces"
9+
authors = [{name = "Metacraft Labs Ltd"}]
10+
license = {text = "MIT"}
11+
readme = "README.md"
12+
requires-python = ">=3.8"
13+
classifiers = [
14+
"License :: OSI Approved :: MIT License",
15+
"Programming Language :: Python :: 3",
16+
"Programming Language :: Python :: 3 :: Only",
17+
]
18+
19+
[tool.setuptools]
20+
py-modules = ["trace"]
21+
package-dir = {"" = "src"}
22+
23+
[tool.setuptools.packages.find]
24+
where = ["src"]
25+
26+
[project.scripts]
27+
codetracer-record = "codetracer_pure_python_recorder.cli:main"
28+
codetracer-record-pure = "codetracer_pure_python_recorder.cli:main"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)