1
1
[project ]
2
2
name = " lbox-example"
3
3
version = " 0.1.0"
4
- description = " Add your description here "
4
+ description = " An example module which can be used to develop other module for labelbox-python "
5
5
authors = [
6
- { name = " Adrian Chang" , email = " achang@labelbox.com" }
6
+ { name = " Labelbox" , email = " engineering@labelbox.com" }
7
+ ]
8
+ dependencies = [
9
+ " art>=6.2" ,
7
10
]
8
- dependencies = []
9
11
readme = " README.md"
10
12
requires-python = " >= 3.8"
11
13
14
+ classifiers =[
15
+ # How mature is this project?
16
+ " Development Status :: 2 - Pre-Alpha" ,
17
+ # Indicate who your project is intended for
18
+ " Topic :: Scientific/Engineering :: Artificial Intelligence" ,
19
+ " Topic :: Software Development :: Libraries" ,
20
+ " Intended Audience :: Developers" ,
21
+ " Intended Audience :: Science/Research" ,
22
+ " Intended Audience :: Education" ,
23
+ # Pick your license as you wish
24
+ " License :: OSI Approved :: Apache Software License" ,
25
+ # Specify the Python versions you support here.
26
+ " Programming Language :: Python :: 3" ,
27
+ " Programming Language :: Python :: 3.8" ,
28
+ " Programming Language :: Python :: 3.9" ,
29
+ " Programming Language :: Python :: 3.10" ,
30
+ " Programming Language :: Python :: 3.11" ,
31
+ " Programming Language :: Python :: 3.12" ,
32
+ ]
33
+ keywords = [" ml" , " ai" , " labelbox" , " labeling" , " llm" , " machinelearning" , " edu" ]
34
+
35
+ [project .urls ]
36
+ Homepage = " https://labelbox.com/"
37
+ Documentation = " https://labelbox-python.readthedocs.io/en/latest/"
38
+ Repository = " https://github.com/Labelbox/labelbox-python"
39
+ Issues = " https://github.com/Labelbox/labelbox-python/issues"
40
+ Changelog = " https://github.com/Labelbox/labelbox-python/blob/develop/libs/labelbox/CHANGELOG.md"
41
+
42
+
12
43
[build-system ]
13
44
requires = [" hatchling" ]
14
45
build-backend = " hatchling.build"
@@ -17,8 +48,14 @@ build-backend = "hatchling.build"
17
48
managed = true
18
49
dev-dependencies = []
19
50
51
+ [tool .rye .scripts ]
52
+ unit = " pytest tests/unit"
53
+
20
54
[tool .hatch .metadata ]
21
55
allow-direct-references = true
22
56
23
57
[tool .hatch .build .targets .wheel ]
24
- packages = [" src/lbox_example" ]
58
+ packages = [" src/lbox" ]
59
+
60
+ [tool .pytest .ini_options ]
61
+ addopts = " -rP -vvv --durations=20 --cov=lbox.example --import-mode=importlib"
0 commit comments