forked from kastnerkyle/tfbldr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·26 lines (25 loc) · 890 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
import os
import setuptools
setuptools.setup(
name='tfbldr',
version='0.0.1',
packages=setuptools.find_packages(),
author='Kyle Kastner',
author_email='kastnerkyle@gmail.com',
description='Deep Learning tools for Tensorflow',
long_description=open(os.path.join(os.path.dirname(
os.path.abspath(__file__)), 'README.rst')).read(),
license='BSD 3-clause',
url='http://github.com/kastnerkyle/tfbldr/',
package_data={
'pthbldr': ['datasets/data/*']
},
install_requires=['numpy',
'scipy',
'tensorflow-gpu'],
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering'],
)