Skip to content

Commit aef2660

Browse files
author
Adrian Chang
committed
Check boilerplate
1 parent 9dff1c2 commit aef2660

File tree

7 files changed

+42
-0
lines changed

7 files changed

+42
-0
lines changed

libs/lbox-example/.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# python generated files
2+
__pycache__/
3+
*.py[oc]
4+
build/
5+
dist/
6+
wheels/
7+
*.egg-info
8+
9+
# venv
10+
.venv

libs/lbox-example/.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.8.18

libs/lbox-example/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# lbox-example
2+
3+
Describe your project here.

libs/lbox-example/pyproject.toml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
[project]
2+
name = "lbox-example"
3+
version = "0.1.0"
4+
description = "Add your description here"
5+
authors = [
6+
{ name = "Adrian Chang", email = "achang@labelbox.com" }
7+
]
8+
dependencies = []
9+
readme = "README.md"
10+
requires-python = ">= 3.8"
11+
12+
[build-system]
13+
requires = ["hatchling"]
14+
build-backend = "hatchling.build"
15+
16+
[tool.rye]
17+
managed = true
18+
dev-dependencies = []
19+
20+
[tool.hatch.metadata]
21+
allow-direct-references = true
22+
23+
[tool.hatch.build.targets.wheel]
24+
packages = ["src/lbox_example"]
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def hello() -> str:
2+
return "Hello from lbox-example!"

requirements-dev.lock

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
# generate-hashes: false
1010

1111
-e file:libs/labelbox
12+
-e file:libs/lbox-example
1213
alabaster==0.7.13
1314
# via sphinx
1415
annotated-types==0.7.0

requirements.lock

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
# generate-hashes: false
1010

1111
-e file:libs/labelbox
12+
-e file:libs/lbox-example
1213
alabaster==0.7.13
1314
# via sphinx
1415
annotated-types==0.7.0

0 commit comments

Comments
 (0)