forked from asyml/texar-pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (43 loc) · 1.33 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import setuptools
long_description = '''
Texar is an open-source toolkit based on Pytorch,
aiming to support a broad set of machine learning especially text generation
tasks, such as machine translation, dialog, summarization, content manipulation,
language modeling, and so on.
Texar is designed for both researchers and practitioners for fast prototyping
and experimentation.
'''
setuptools.setup(
name="texar",
version="0.0.1",
url="https://github.com/ZhitingHu/texar-pytorch",
description="Toolkit for Text Generation and Beyond",
long_description=long_description,
license='Apache License Version 2.0',
packages=setuptools.find_packages(),
platforms='any',
install_requires=[
'numpy',
'pyyaml',
'requests',
'funcsigs',
],
extras_require={
'torch': ['torch>=1.0.0'],
},
package_data={
"texar": [
"../bin/utils/multi-bleu.perl",
]
},
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)