-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
36 lines (32 loc) · 936 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
from setuptools import setup
with open("README.md") as f:
readme = f.read()
with open("LICENSE") as f:
license = f.read()
setup(
name="vpype-flow-imager",
version="1.0.8",
description="Convert images to flow field line art.",
long_description=readme,
long_description_content_type="text/markdown",
author="Jonas Serych",
url="https://github.com/serycjon/vpype-flow-imager",
license=license,
packages=["vpype_flow_imager"],
install_requires=[
'click',
'vpype>=1.10,<2.0',
'opencv-python-headless', # headless not to conflict with QT versions in vpype show
'opensimplex==0.4',
'tqdm',
'scikit-image',
'pillow',
],
extras_require={
"all": ['hnswlib>=0.5.0'],
},
entry_points='''
[vpype.plugins]
vpype_flow_imager=vpype_flow_imager.vpype_flow_imager:vpype_flow_imager
''',
)