-
Notifications
You must be signed in to change notification settings - Fork 97
/
setup.py
36 lines (34 loc) · 1.02 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
#!/usr/bin/env python
__author__ = "solivr"
__license__ = "GPL"
from setuptools import setup, find_packages
setup(name='tf_crnn',
version='0.6.0',
license='GPL',
author='Sofia Ares Oliveira',
url='https://github.com/solivr/tf-crnn',
description='TensorFlow Convolutional Recurrent Neural Network (CRNN)',
install_requires=[
'imageio',
'numpy',
'tqdm',
'sacred',
'opencv-python',
'pandas',
'click',
#'tensorflow-addons',
'tensorflow-gpu',
'taputapu'
],
dependency_links=['https://github.com/solivr/taputapu/tarball/master#egg=taputapu-1.0'],
extras_require={
'doc': [
'sphinx',
'sphinx-autodoc-typehints',
'sphinx-rtd-theme',
'sphinxcontrib-bibtex',
'sphinxcontrib-websupport'
],
},
packages=find_packages(where='.'),
zip_safe=False)