-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
40 lines (37 loc) · 1.09 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
from setuptools import setup
readme = ""
with open("README.md", encoding="utf-8") as f:
readme = f.read()
setup(
name="chariot",
use_scm_version=True,
setup_requires=["setuptools_scm"],
description="Deliver the ready-to-train data to your NLP model.",
long_description=readme,
long_description_content_type="text/markdown",
keywords=["machine learning", "nlp", "natural language processing"],
author="icoxfog417",
author_email="[email protected]",
license="Apache License 2.0",
packages=[
"chariot",
"chariot.resource",
"chariot.transformer",
"chariot.transformer.formatter",
"chariot.transformer.generator",
"chariot.transformer.text",
"chariot.transformer.token",
"chariot.transformer.tokenizer"
],
url="https://github.com/chakki-works/chariot",
install_requires=[
"numpy>=1.14.4",
"scipy>=1.1.0",
"scikit-learn>=0.19.1",
"spacy>=1.9.0",
"pandas>=0.23.1",
"chazutsu>=0.8.2",
"chakin>=0.0.6",
"tqdm>=4.23.4"
],
)