-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
45 lines (39 loc) · 1.12 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
[build-system]
requires = ["setuptools>=64.0.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "AfriTeVa"
description = "LLMs for African Languages"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.8"
dependencies = [
'python-dotenv',
't5',
'tensorflow_io'
]
dynamic = [
"version",
]
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]
license = { text = "Apache-2.0" }
[project.optional-dependencies]
dev = [
'ipykernel',
]
[project.urls]
Homepage = "https://github.com/castorini/AfriTeVa-Keji"
[project.scripts]
teva = "teva.cli:main"