-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (31 loc) · 907 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
"""Install Nizza."""
from setuptools import find_packages
from setuptools import setup
setup(
name='nizza',
version='0.1',
description='Nizza',
author='University of Cambridge',
author_email='[email protected]',
url='https://github.com/fstahlberg/nizza',
license='Apache 2.0',
packages=find_packages(),
scripts=[
'nizza/train.py',
],
install_requires=[
'future',
'numpy',
],
extras_require={
'tensorflow': ['tensorflow>=1.4.0'],
'tensorflow_gpu': ['tensorflow-gpu>=1.4.0'],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
keywords='tensorflow word-alignment',)