-
Notifications
You must be signed in to change notification settings - Fork 398
/
setup.py
83 lines (76 loc) · 2.06 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Version number is tracked in docs/conf.py.
import setuptools
from docs import conf as docs_conf
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()
extras = {}
# Packages required for installing docs.
extras["docs"] = [
"recommonmark",
"nbsphinx",
"sphinx-autobuild",
"sphinx-rtd-theme",
"sphinx-markdown-tables",
"sphinx-copybutton",
]
# Packages required for formatting code & running tests.
extras["test"] = [
"black==20.8b1",
"docformatter",
"isort==5.6.4",
"flake8",
"pytest",
"pytest-xdist",
]
extras["tensorflow"] = [
"tensorflow>=2.9.1",
"tensorflow_hub",
"tensorflow_text>=2.9.0",
"tensorboardX",
"tensorflow-estimator>=2.9.0",
]
extras["optional"] = [
"sentence_transformers==2.2.0",
"stanza",
"visdom",
"wandb",
"gensim",
]
# For developers, install development tools along with all optional dependencies.
extras["dev"] = (
extras["docs"] + extras["test"] + extras["tensorflow"] + extras["optional"]
)
setuptools.setup(
name="textattack",
version=docs_conf.release,
author="QData Lab at the University of Virginia",
author_email="[email protected]",
description="A library for generating text adversarial examples",
include_package_data=False,
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/QData/textattack",
packages=setuptools.find_namespace_packages(
exclude=[
"build*",
"docs*",
"dist*",
"examples*",
"outputs*",
"tests*",
"wandb*",
]
),
extras_require=extras,
entry_points={
"console_scripts": ["textattack=textattack.commands.textattack_cli:main"],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
install_requires=open("requirements.txt").readlines(),
)