-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 756 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (27 loc) · 756 Bytes
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 setuptools import setup, find_packages
setup(
name="wanda",
version="0.1.0",
description="WANDA pruning library",
author="Sam Orion",
author_email="your.email@example.com",
url="https://github.com/Sam-Orion/wanda-python",
packages=find_packages(include=["wanda", "wanda.*"]), # include subpackages
install_requires=[
"torch",
"transformers>=4.28.0",
"datasets>=2.11.0",
"accelerate>=0.18.0",
"numpy",
"sentencepiece",
"wandb"
],
entry_points={
"console_scripts": [
"wanda=wanda.main:main",
"wanda-opt=wanda.main_opt:main"
],
},
include_package_data=True,
package_data={"wanda": ["*.md", "*.txt"]},
)