forked from leeck10/Rationale_Extraction_using_Diffmask
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 789 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (24 loc) · 789 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
import os
from setuptools import setup
from setuptools import find_packages
setup(
name="diffmask",
version="0.1.0",
author="Nicola De Cao",
author_email="nicola.decao@gmail.com",
description="Pytorch implementation of DiffMask",
license="MIT",
keywords="pytorch machine-learning deep-learning interpretability explainability",
url="https://nicola-decao.github.io",
download_url="https://github.com/nicola-decao/diffmask",
long_description=open(os.path.join(os.path.dirname(__file__), "README.md")).read(),
install_requires=[
"torch>=1.5.0",
"pytorch-lightning==0.7.3",
"transformers>=2.9.0",
"spacy==2.2.4",
"torch-optimizer==0.0.1a9",
"matplotlib>=3.1.1"
],
packages=find_packages(),
)