-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.py
36 lines (33 loc) · 1.19 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
exec(open("elang/version.py").read())
setuptools.setup(
name="elang",
version=__version__,
author="Samuel Chan, Tomy Tjandra",
author_email="samuel@algorit.ma",
description="Word Embedding(E) utilities for Language(Lang) Models",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/onlyphantom/elang",
packages=setuptools.find_namespace_packages(include=['elang', 'elang.plot.*', 'elang.word2vec.*']),
# packages=['elang.plot.utils', 'elang.word2vec.utils', 'elang.word2vec.builder'],
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
install_requires=[
"gensim",
"scikit-learn",
"matplotlib",
"tqdm",
"beautifulsoup4",
],
keywords="nlp bahasa indonesia indonesian natural language corpus word2vec gensim embedding nltk",
test_suite="nose.collector",
tests_require=["nose"],
)