forked from ria-com/nomeroff-net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (42 loc) · 1.74 KB
/
setup.py
File metadata and controls
43 lines (42 loc) · 1.74 KB
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
41
42
43
from setuptools import setup, find_packages
setup(name='nomeroff-net',
version='2.0.0',
description='Automatic numberplate recognition system',
long_description='Nomeroff Net is a opensource python license plate recognition framework based on the application of a convolutional neural network on the Mask_RCNN architecture, and cusomized OCR-module powered by GRU architecture. The project is now at the initial stage of development, write to us if you are interested in helping us in the formation of a dataset for your country.',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
keywords='Nomeroff Net ai centermask2 OCR GRU opensource license number plate recognition licenseplate numberplate license-plate number-plate ria-com RIA.com ria',
url='https://github.com/ria-com/nomeroff-net',
author='Dmytro Probachay, Oleg Cherniy',
author_email='[email protected], [email protected]',
license='MIT',
packages=find_packages(),
install_requires=[
'cython',
'setuptools',
'numpy',
'imgaug',
'tensorflow',
'matplotlib',
'seaborn',
'Cython',
'pycocotools',
'matplotlib',
'tensorflow>=2.3.*',
'opencv_python',
'scikit_image',
'asyncio',
'GitPython',
'pycocotools',
'tqdm',
'matplotlib',
'torch',
'torchvision',
'PyYAML==5.4',
],
include_package_data=True,
zip_safe=False)