forked from dkmfbk/dket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 710 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""Setup module for the liteflow package."""
from setuptools import setup, find_packages
setup(name='dket',
version='0.0.1',
description='Deep Knowledge Extraction from Text',
url='https://github.com/dkmfbk/dket',
author='Giulio Petrucci (petrux)',
author_email='giulio.petrucci@gmail.com',
license='Apache License 2.0',
packages=find_packages(exclude=["tests"]),
install_requires=[
'editdistance==0.3.1',
'liteflow==0.1.0',
'six==1.10.0',
'edit-distance==1.0.1'
],
dependency_links=[
'git+https://github.com/petrux/LiTeFlow.git@master#egg=liteflow-0.1.0'
],
zip_safe=False)