-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
36 lines (34 loc) · 1.07 KB
/
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") as f:
long_description = f.read()
setup(
name="soft_moe",
packages=find_packages(),
version="0.0.1",
license="Apache-2.0",
description="PyTorch implementation of 'From Sparse to Soft Mixtures of Experts'",
long_description=long_description,
long_description_content_type="text/markdown",
author="Ben Conrad",
author_email="benwconrad@proton.me",
url="https://github.com/bwconrad/soft-moe",
keywords=[
"transformers",
"artificial intelligence",
"computer vision",
"deep learning",
],
install_requires=[
"timm >= 0.9.2",
"torch >= 2.0.1",
],
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
python_requires=">=3.10",
)