-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (33 loc) · 984 Bytes
/
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
35
36
37
# setup.py
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="cil4sys",
version="0.1.3",
author="Wissem Chiha",
author_email="[email protected]",
description="LPDR package",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/wissem01chiha/cil4sys",
packages=setuptools.find_packages(),
include_package_data=True,
package_data={'cil4sys': ['config/*.json', 'config/*.sh', 'data/videos/*.mp4']},
py_modules=["main"],
install_requires=[
"multiprocess==0.70.15",
"numpy==1.23.5",
"opencv_python==4.6.0.66",
"Pillow==10.0.0",
"pytesseract==0.3.10",
"scipy==1.8.1",
"setuptools==68.1.2",
"scikit-image==0.18.1"
],
entry_points={
'console_scripts': [
'run_cil4sys = cil4sys.run_cil4sys:main_cli',
],
},
)