-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·85 lines (71 loc) · 2.69 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#!/usr/bin/env python
"""TF_Curses, Alphagriffin.com.
Eric Petersen @Ruckusist <eric.alphagriffin@gmail.com>
"""
from setuptools import setup, find_packages
from codecs import open
from os import path
import py2exe
if __name__ == '__main__':
# long_description breaks out of DIR installs!
setup(
name='TF_Curses',
version='0.0.1',
license='AG', # FIXME
namespace_packages=['ag'], # home for Alpha Griffin libraries
packages=find_packages(exclude=['tests']),
author='Ruckusist @ Alpha Griffin',
author_email='ruckusist@alphagriffin.com',
description='Tensorflow User Interface for Distributed Networks',
long_description=open('README.rst').read(),
url='http://github.com/alphagriffin/tf_curses',
# @see https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
"Environment :: Console",
"Environment :: Console :: Curses",
'Intended Audience :: Developers',
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
'Natural Language :: English',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: PyPy",
'Topic :: System :: Installation/Setup',
'Topic :: Utilities'
],
# space-separated list of keywords
keywords='alphagriffin tensorflow utilities curses ui user interface text',
platforms="unix-like",
# run-time dependencies
# twisted is a threading program... will be upgraded to soon.
# tf gpu is breaking on the server install
# Tensorflow needs to be installed manually...
install_requires=['setuptools',
'numpy',
'flask',
'redis',
'inflect',
], # setuptools here for example only (it's implied)
extras_require={
},
package_data={
},
data_files=[],
entry_points={
'console_scripts': [
'tf_curses = ag.tf_curses.__main__:main'
]
# for windows
'console': [
'launch.py'
]
},
test_suite='nose.collector',
tests_require=['nose'],
)