-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (39 loc) · 1.15 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
35
36
37
38
39
40
41
42
43
import setuptools
import os
with open("README.md", "r") as fh:
long_description = fh.read()
__version__ = "1.2.0"
if os.environ.get('TARGET_ENV'):
__version__ = __version__ + ".dev" + os.environ['CI_JOB_ID']
setuptools.setup(
name="improutils",
author="ImproLab",
version=__version__,
author_email="[email protected]",
description="Package with useful functions for BI-SVZ coursework",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ImprolabFIT/improutils_package",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"numpy>=1.19.3",
"Pillow>=8.1.0",
"matplotlib>=3.4.2",
"opencv-python>=4.5.3.56",
"Pylon>=0.4.4",
"pypylon",
"pytesseract>=0.3.7",
"wheel",
"natsort>=5.3.3",
"PyYAML>=5.3.1",
"qreader==3.12",
"sphinx",
"sphinx_rtd_theme"
],
python_requires='>=3.8',
)