-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 880 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
29
from setuptools import setup
setup(
name='ucnn',
version='git.latest',
description='Universal CNN Training & Predicting For Fixed-Length Label Captcha.',
packages=["ucnn"],
include_package_data=True,
url='https://github.com/Jiramew/universal_cnn',
license='BSD License',
author='Jiramew',
author_email='[email protected]',
maintainer='Jiramew',
maintainer_email='[email protected]',
platforms=["all"],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries'
],
scripts=['bin/ucnn'],
install_requires=[
'tensorflow>=1.4.0',
'pillow>=4.2.1'
]
)