-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
36 lines (33 loc) · 1007 Bytes
/
setup.py
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
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="spin-model-transformers",
version="0.0.1",
author="Matthias Bal",
author_email="[email protected]",
description="Physics-inspired transformer modules based on mean-field dynamics of vector-spin models",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mcbal/spin-model-transformers",
license="Apache-2.0",
packages=find_packages(exclude=["examples", "notebooks", "tests"]),
python_requires=">=3.9",
install_requires=[
"einops>=0.6.1",
"equinox>=0.11.2",
"jax>=0.4.20",
"jaxlib>=0.4.20",
"jaxopt>=0.8",
"numpy>=1.26",
"optax>=0.1.7",
],
extras_require={
"dev": [
"black~=23.9.1",
"nbqa~=1.7",
"pre-commit~=3.4.0",
"ruff~=0.0.291",
]
},
)