You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

setup.py 947 B

5 years ago
123456789101112131415161718192021222324252627282930313233
  1. import setuptools
  2. # with open("README.md", "r") as fh:
  3. # long_description = fh.read()
  4. long_description = "LPR framework"
  5. setuptools.setup(
  6. name="hyperlpr",
  7. version="0.0.2",
  8. author="Jack Yu",
  9. author_email="jack-yu-business@foxmail.com",
  10. description="A general small license plate recognition framework",
  11. long_description=long_description,
  12. long_description_content_type="text/markdown",
  13. url="https://github.com/zeusees/HyperLPR",
  14. packages=setuptools.find_packages(),
  15. classifiers=(
  16. "Programming Language :: Python :: 3",
  17. "Programming Language :: Python :: 2",
  18. "License :: OSI Approved :: MIT License",
  19. "Operating System :: OS Independent",
  20. ),
  21. install_requires=[
  22. "opencv-python"
  23. ],
  24. package_data={
  25. "hyperlpr": [
  26. "models/cascade/char/*.*",
  27. "models/cascade/detector/*.*",
  28. "models/dnn/*.*"
  29. ]
  30. },
  31. )