-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (58 loc) · 1.83 KB
/
pyproject.toml
File metadata and controls
64 lines (58 loc) · 1.83 KB
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
61
62
63
64
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "transformer"
version = "0.4.0"
description = "A polished PyTorch implementation of the current State-Of-The-Art(SOTA) Transformer"
readme = "README.md"
authors = [
{name = "Leinier Orama", email = "lof310w@gmail.com"}
]
maintainers = [
{ name = "Leinier Orama", email = "lof310w@gmail.com" }
]
license = {text = "Apache-2.0"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent"
]
keywords = [
"llm", "transformers", "pytorch", "deep-learning", "machine-learning"
]
requires-python = ">=3.9"
dependencies = [
"torch>=1.12.0",
"transformers>=4.30.0"
]
[project.urls]
Homepage = "https://github.com/lof310/transformer"
Repository = "https://github.com/lof310/transformer.git"
[tool.setuptools.packages.find]
where = ["."]
include = ["transformer*"]
[tool.black]
line-length = 120
target-version = ['py38', 'py39', 'py310', 'py311', 'py312', 'py313']
include = '\.pyi?$'
[tool.coverage.run]
source = ["transformer"]
omit = ["*/tests/*", "*/test_*"]
[tool.mypy]
ignore_missing_imports = true
warn_return_any = true
warn_unused_configs = true
check_untyped_defs = true
disallow_untyped_decorators = true