-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
34 lines (32 loc) · 1.28 KB
/
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
30
31
32
33
34
from setuptools import setup
from setuptools import find_packages
with open("README.md") as f:
long_description = f.read()
setup(
name="boxdetect",
version="1.0.2",
description="boxdetect is a Python package based on OpenCV which allows you to easily detect rectangular shapes like characters boxes on scanned forms.",
long_description=long_description,
long_description_content_type="text/markdown", # This is important!
url="http://github.com/karolzak/boxdetect",
author="Karol Zak",
author_email="[email protected]",
license="MIT",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
],
packages=find_packages(),
zip_safe=False,
install_requires=[
'opencv-python', 'numpy', 'imutils', 'pyyaml', 'scikit-learn'],
)