-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
71 lines (65 loc) · 1.77 KB
/
setup.py
File metadata and controls
71 lines (65 loc) · 1.77 KB
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
import setuptools
import os
from setuptools import find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
name="yonlu"
#torch for CPU only
#pip install torch==1.5.1+cpu torchvision==0.6.1+cpu -f https://download.pytorch.org/whl/torch_stable.html
# Build a list of all project modules
packages = find_packages(exclude = [])
print('packages', packages)
setuptools.setup(
name="yonlu", # Replace with your own username
version="1.1.12",
author="Min Song",
author_email="min.song@yonsei.ac.kr",
description="A deep learning based natural language understanding module",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/MinSong2/yonlu",
packages=packages,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"cython",
"seqeval",
"pytorch-crf",
"numpy",
"sklearn-crfsuite",
"gensim",
"konlpy",
"krwordrank",
"lxml",
"matplotlib",
"networkx",
"node2vec",
"bs4",
"pycrfsuite-spacing",
"scikit-learn",
"scipy",
"seaborn",
"soynlp",
"torch",
"tomotopy",
"pyLDAvis",
"wordcloud",
"nltk",
"newspaper3k",
"selenium",
"soylemma",
"bokeh",
"tensorflow-estimator>=2.4.0",
"tensorflow>=2.4.1",
"beautifulsoup4",
"benepar>=0.2.0",
"boto3",
"kobert-transformers",
"treform",
"openai"
],
python_requires='>=3.7',
)