forked from EdinburghNLP/nematus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·23 lines (21 loc) · 799 Bytes
/
setup.py
File metadata and controls
executable file
·23 lines (21 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python3
import os
import io
import setuptools
setuptools.setup(
name='nematus',
version='0.5',
description='Neural machine translation tools on top of Tensorflow',
long_description=io.open(os.path.join(os.path.dirname(
os.path.abspath(__file__)), 'README.md'),encoding='UTF-8').read(),
license='BSD 3-clause',
url='http://github.com/EdinburghNLP/nematus',
install_requires=['numpy',
'tensorflow'],
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering'],
packages = ['nematus', 'nematus.metrics'],
)