-
Notifications
You must be signed in to change notification settings - Fork 98
/
setup.py
47 lines (43 loc) · 1.42 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
37
38
39
40
41
42
43
44
45
46
47
from distutils.core import setup
from setuptools import find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="transformers-interpret",
packages=find_packages(
exclude=[
"*.tests",
"*.tests.*",
"tests.*",
"tests",
"examples",
"docs",
"out",
"dist",
"media",
"test",
]
),
version="0.9.6",
license="Apache-2.0",
description="Transformers Interpret is a model explainability tool designed to work exclusively with 🤗 transformers.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Charles Pierse",
url="https://github.com/cdpierse/transformers-interpret",
keywords=[
"machine learning",
"natural language proessing",
"explainability",
"transformers",
"model interpretability",
],
install_requires=["transformers>=3.0.0", "captum>=0.3.1"],
classifiers=[
"Development Status :: 3 - Alpha", # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.8",
],
)