-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 889 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 889 Bytes
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "machine_translation"
version = "0.0.1"
authors = [
{ name="Caleb Cranney", email="11773171+CCranney@users.noreply.github.com" },
]
description = ""
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
'pytorch-lightning>=2.2.1',
'scikit-learn>=1.1.2',
'pandas>=1.2.2',
'sacrebleu>=2.4.3',
'wandb>=0.19.2',
]
[tool.setuptools.packages.find]
where = ["src"]
[project.urls]
"Homepage" = "https://github.com/xomicsdatascience/machine-translation"
"Bug Tracker" = "https://github.com/xomicsdatascience/machine-translation/issues"