-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
28 lines (25 loc) · 805 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
27
28
# -*- coding: utf-8 -*-
from setuptools import setup
requirements = open('requirements.txt').read().splitlines()
setup(
name='chamanti_ocr',
version='0.1',
description='Telugu OCR framework using RNN, CTC in Theano & Python3',
url='https://github.com/rakeshvar/chamanti_ocr',
author='Rakeshvar Achanta',
author_email='[email protected]',
license='Apache',
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: Apache License',
'Programming Language :: Python :: 3',
],
keywords='telugu ocr',
install_requires=requirements,
py_modules=['.py', 'rnn_ctc', 'lab', 'telugu'],
package_data={
'': ['*.ast']
},
include_package_data=True,
)