-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (30 loc) · 919 Bytes
/
pyproject.toml
File metadata and controls
32 lines (30 loc) · 919 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"etc" = "src"}
[project]
name = "etc"
authors = [
{name = "Ömer BORHAN", email = "borhano.f.42@gmail.com"},
]
description = "Implementation of Encoding Long and Structured Inputs in Transformers"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["transformer", "foundation model"]
license = {text = "MIT"}
classifiers = [
"Environment :: Console",
"Natural Language :: English",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"torch"
]
dynamic = ["version"]