-
-
Notifications
You must be signed in to change notification settings - Fork 463
/
setup.py
executable file
·31 lines (27 loc) · 984 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
from setuptools import setup, find_packages
import sys
if sys.version_info < (3,):
sys.exit("Sorry, Python3 is required.")
with open("README.md", encoding="utf8") as f:
readme = f.read()
with open('requirements.txt') as f:
install_reqs = f.read().splitlines()
setup(
name="nlpaug",
version="1.1.11",
author="Edward Ma",
author_email="makcedward@gmail.com",
url="https://github.com/makcedward/nlpaug",
license="MIT",
description="Natural language processing augmentation library for deep neural networks",
long_description=readme,
long_description_content_type="text/markdown",
packages=find_packages(exclude="test"),
include_package_data=True,
install_requires=install_reqs,
keywords=[
"deep learning", "neural network", "machine learning",
"nlp", "natural language processing", "text", "audio", "spectrogram",
"augmentation", "adversarial attack", "ai", "ml"],
python_requires=">=3.7"
)