-
Notifications
You must be signed in to change notification settings - Fork 23
/
pyproject.toml
49 lines (41 loc) · 1.62 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
# Guide (user-friendly):
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
# Specification (technical, formal):
# https://packaging.python.org/en/latest/specifications/pyproject-toml/
# Choosing a build backend:
[build-system]
requires = ["setuptools"] # REQUIRED if [build-system] table is used
build-backend = "setuptools.build_meta" # If not defined, then legacy behavior can happen.
[project]
name = "infini-transformer"
version = "0.2.7"
description = "Infini-Transformer is a powerful and versatile transformer model designed for a wide range of natural language processing tasks."
readme = "readme.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["deep learning", "LLM", "transformer"]
authors = [
{name = "Ryan Taylor", email = "[email protected]" }
]
maintainers = [
{name = "Ryan Taylor", email = "[email protected]" }
]
# Classifiers help users find your project by categorizing it.
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha, 4 - Beta, 5 - Production/Stable
"Development Status :: 3 - Alpha",
# Indicate who your project is intended for
"Intended Audience :: Developers",
# Pick your license as you wish
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"torch>=2.0.0"
]
[project.urls]
"Homepage" = "https://github.com/dingo-actual/infini-transformer"
"Bug Reports" = "https://github.com/dingo-actual/infini-transformer/issues"
"Publication" = "https://arxiv.org/abs/2404.07143"
"Source" = "https://github.com/dingo-actual/infini-transformer/"