-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
37 lines (33 loc) · 880 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
import os
import setuptools
from setuptools import setup
install_requires = [
"numpy",
"keras",
"tokenizer_tools",
"flask",
"flask-cors",
"ioflow",
"tf-crf-layer",
"tf-attention-layer",
"tensorflow>=1.15.0,<2.0.0",
"deliverable-model",
"gunicorn",
"micro_toolkit",
"nlp_utils",
"seq2annotation_for_deliverable"
]
setup(
# TODO(howl-anderson): learn from TF how to release nightly build
# _PKG_NAME will be used in Makefile for dev release
name=os.getenv("_PKG_NAME", "seq2annotation"),
version="0.14.1",
packages=setuptools.find_packages(),
include_package_data=True,
url="https://github.com/howl-anderson/seq2annotation",
license="Apache 2.0",
author="Xiaoquan Kong",
author_email="[email protected]",
description="seq2annotation",
install_requires=install_requires,
)