forked from supervisely/supervisely
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (44 loc) · 1.44 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
44
45
46
47
48
49
import os
from setuptools import find_packages, setup
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as fin:
return fin.read()
# Dependencies do not include PyTorch, so
# supervisely_lib.nn.hosted.pytorch will not work out of the box.
# If you need to invoke that part of the code, it is very likely you
# already have PyTorch installed.
setup(
name="supervisely",
version="6.0.33",
packages=find_packages(include=['supervisely_lib', 'supervisely_lib.*']),
description="Supervisely Python SDK.",
long_description=read("README.md"),
url="https://github.com/supervisely/supervisely",
install_requires=[
"flask-restful>=0.3.7",
"grpcio>=1.12.1",
"jsonschema>=2.6.0,<3.0.0",
"matplotlib>=3.0.0",
"numpy>=1.14.3",
"opencv-python>=3.4.1,<4.0.0",
"pandas>=1.0.3",
"pascal-voc-writer>=0.1.4",
"PTable>=0.9.2",
"pillow>=6.2.1",
"protobuf>=3.7.1",
# Higher python-json-logger versions are incompatible with
# simplejson somehow, so for now prevent higher versions from
# being installed.
"python-json-logger==0.1.8",
"requests>=2.18.4",
"requests-toolbelt>=0.9.1",
"scikit-image>=0.13.0",
"scipy>=1.1.0",
"Shapely>=1.5.13",
"simplejson>=3.16.0",
"Werkzeug>=0.15.1",
"bidict",
"sk-video",
"plotly==4.5.4"
],
)