-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 1.04 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
from setuptools import setup
from setuptools import find_packages
setup(
name='tgen',
version='0.2.0',
description='Sequence-to-sequence natural language generator',
author='Ondrej Dusek',
author_email='[email protected]',
url='https://github.com/UFAL-DSG/tgen',
download_url='https://github.com/UFAL-DSG/tgen.git',
license='Apache 2.0',
install_requires=['regex',
'unicodecsv',
'enum34',
'numpy',
'rpyc',
'pudb',
'recordclass',
'tensorflow==1.0.1',
'kenlm',
'pytreex==0.1dev'],
dependency_links=['https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.0.1-cp27-none-linux_x86_64.whl#egg=tensorflow-1.0.1',
'https://github.com/kpu/kenlm/archive/master.zip#egg=kenlm',
'https://github.com/ufal/pytreex/tarball/master#egg=pytreex-0.1dev'],
packages=find_packages()
)