You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
Python
37 lines
1.1 KiB
Python
![]()
2 years ago
|
# !/usr/bin/env python
|
||
|
from setuptools import find_packages, setup
|
||
|
|
||
|
__version__ = "0.1.1"
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
setup(
|
||
|
name="hyperlpr3",
|
||
|
version=__version__,
|
||
|
description="vehicle license plate recognition.",
|
||
|
url="https://github.com/szad670401/HyperLPR",
|
||
|
author="HyperInspire",
|
||
|
author_email="tunmxy@163.com",
|
||
|
keywords="vehicle license plate recognition",
|
||
|
packages=find_packages(),
|
||
|
classifiers=[
|
||
|
"License :: OSI Approved :: Apache Software License",
|
||
|
"Operating System :: OS Independent",
|
||
|
"Programming Language :: Python :: 3",
|
||
|
],
|
||
|
install_requires=[
|
||
|
"opencv-python",
|
||
|
"onnxruntime",
|
||
|
"tqdm",
|
||
|
"requests",
|
||
|
"fastapi",
|
||
|
"uvicorn",
|
||
|
"python-multipart",
|
||
|
"loguru"
|
||
|
],
|
||
|
license="Apache License 2.0",
|
||
|
zip_safe=False,
|
||
|
entry_points="""
|
||
|
[console_scripts]
|
||
|
lpr3=hyperlpr3.command.cli:cli
|
||
|
"""
|
||
|
)
|