-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
60 lines (57 loc) · 1.47 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "oale-creator"
version = "1.0.0"
authors = [
{name="Umar Butler", email="[email protected]"},
]
description = "The creator of the Open Australian Legal Embeddings"
readme = "README.md"
requires-python = ">=3.10"
license = {text="MIT"}
keywords = [
"law",
"australia",
"australian",
"legal",
"oalc",
"oale",
"open",
"open data",
"open source",
"open legal data",
"embeddings",
"ai",
"ml",
"nlp",
"machine learning",
"natural language processing",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
"click",
"mpire",
"orjson",
"orjsonl",
"rich",
"semchunk",
"sentence_transformers",
"tqdm",
"transformers",
]
[project.urls]
Homepage = "https://github.com/umarbutler/open-australian-legal-embeddings-creator"
Documentation = "https://github.com/umarbutler/open-australian-legal-embeddings-creator/blob/main/README.md"
Issues = "https://github.com/umarbutler/open-australian-legal-embeddings-creator/issues"
Source = "https://github.com/umarbutler/open-australian-legal-embeddings-creator"
[project.scripts]
mkoale = "oale_creator.cli:create"