-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (35 loc) · 953 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
31
32
33
34
35
36
37
38
39
# -*- coding: utf-8 -*-
# file: setup.py
# time: 2021/4/22 0022
# author: yangheng <[email protected]>
# github: https://github.com/yangheng95
# Copyright (C) 2021. All Rights Reserved.
from setuptools import setup, find_packages
from boost_aug import __version__, __name__
extras_require = {
"full": [
# install the following requirements depend on the backend of your choice
"textattack",
"nlpaug",
"tensorflow_text",
]
}
setup(
name=__name__,
version=__version__,
description="",
url="https://github.com/yangheng95/BoostAug",
# Author details
author="Yang Heng",
author_email="[email protected]",
python_requires=">=3.6",
packages=find_packages(),
include_package_data=True,
exclude_package_date={"": [".gitignore"]},
# Choose your license
license="MIT",
install_requires=[
"pyabsa>=2.0.10",
],
extras_require=extras_require,
)