-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (39 loc) · 1.53 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
from setuptools import setup
setup(name='emloop-tensorflow',
version='0.6.0',
description='TensorFlow extension for emloop.',
long_description='Plugin that enables emloop to work with TensorFlow.',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Operating System :: Unix',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
keywords='tensorflow wrapper',
url='https://github.com/iterait/emloop-tensorflow',
author='Iterait a.s.',
author_email='hello@iterait.com',
license='MIT',
packages=[
'emloop_tensorflow',
'emloop_tensorflow.hooks',
'emloop_tensorflow.models',
'emloop_tensorflow.ops',
'emloop_tensorflow.utils',
'emloop_tensorflow.metrics',
'emloop_tensorflow.third_party',
'emloop_tensorflow.third_party.tensorflow'
],
include_package_data=True,
zip_safe=False,
setup_requires=['pytest-runner'],
tests_require=['pytest', 'pytest-mock'],
install_requires=[line for line in open('requirements.txt', 'r').readlines() if not line.startswith('#')],
)