-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 902 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 902 Bytes
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
from setuptools import find_packages, setup
setup(name="epdetection",
version="1.0.10",
description="PCB components detection module",
url="https://github.com/EPC-MSU/epdetection",
author="EPC MSU",
author_email="a.p.marakulin@gmail.com",
license="CC0-1.0",
packages=find_packages(),
python_requires="~=3.6.0",
install_requires=[
"numpy==1.18.1",
"opencv-python",
"scikit-image==0.16.2",
"scikit-learn==0.20.1",
"scipy==1.5.4",
# "epcore @ git+https://github.com/EPC-MSU/epcore#egg=epcore",
],
package_data={"detection": ["dumps/*"]},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: CC0 License",
"Operating System :: OS Independent",
],
zip_safe=False)