-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathsetup.py
30 lines (27 loc) · 777 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
from pathlib import Path
from setuptools import find_packages, setup
_version=0.1
setup(
name="visualcla",
version=_version,
packages=find_packages('models'),
package_dir={'':'models'},
install_requires=[
"transformers >= 4.29.0",
"torch",
"peft",
"Pillow",
"sentencepiece",
"numpy"
],
python_requires=">=3.9",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)