-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (30 loc) · 802 Bytes
/
setup.py
File metadata and controls
35 lines (30 loc) · 802 Bytes
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
#
"""
Setup file.
"""
import setuptools
setuptools.setup(
name="texar",
version="0.0.1",
url="https://github.com/ZhitingHu/txtgen",
description="An open and flexible framework for text generation.",
packages=setuptools.find_packages(),
platforms='any',
install_requires=[
'numpy',
'pyyaml',
'requests',
],
extras_require={
'tensorflow': ['tensorflow>=1.6.0'],
'tensorflow with gpu': ['tensorflow-gpu>=1.6.0']
},
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)