forked from mlc-ai/web-llm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 793 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
from distutils.core import setup
from setuptools import find_packages
# Note there is no need to setup when
# running locally in this folder.
setup(
name = "web-lmm",
version = "0.1.0",
license="Apache-2.0",
description = "LMM on browser",
author = "Web LMM contributors",
url = "https://github.com/mlc-ai/web-llm",
keywords = [],
packages = find_packages(),
install_requires = [
"torch",
"transformers"
],
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
],
)