-
-
Notifications
You must be signed in to change notification settings - Fork 436
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
16a743c
commit dbc0d95
Showing
10 changed files
with
60 additions
and
167 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
[project] | ||
name = "x-transformers" | ||
version = "2.0.0" | ||
description = "X-Transformers" | ||
authors = [ | ||
{ name = "Phil Wang", email = "[email protected]" } | ||
] | ||
readme = "README.md" | ||
requires-python = ">= 3.9" | ||
license = { file = "LICENSE" } | ||
keywords = [ | ||
'artificial intelligence', | ||
'attention mechanism', | ||
'transformers' | ||
] | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'Topic :: Scientific/Engineering :: Artificial Intelligence', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3.6', | ||
] | ||
|
||
dependencies = [ | ||
'einx>=0.3.0', | ||
'einops>=0.8.0', | ||
'loguru', | ||
'packaging>=21.0', | ||
'torch>=2.0', | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://pypi.org/project/x-transformers/" | ||
Repository = "https://github.com/lucidrains/x-transformers" | ||
|
||
[project.optional-dependencies] | ||
examples = ["tqdm", "torchvision"] | ||
|
||
test = [ | ||
"pytest", | ||
] | ||
|
||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
|
||
[tool.pytest.ini_options] | ||
pythonpath = [ | ||
"." | ||
] | ||
|
||
[tool.hatch.metadata] | ||
allow-direct-references = true | ||
|
||
[tool.hatch.build.targets.wheel] | ||
packages = ["x_transformers"] |
File renamed without changes.
File renamed without changes.