-
Notifications
You must be signed in to change notification settings - Fork 563
/
setup.py
160 lines (139 loc) · 4.04 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
#!/usr/bin/env python
"""
Installs FiftyOne.
| Copyright 2017-2024, Voxel51, Inc.
| `voxel51.com <https://voxel51.com/>`_
|
"""
from importlib import metadata
import os
import re
from setuptools import setup, find_packages
VERSION = "1.2.0"
def get_version():
if "RELEASE_VERSION" in os.environ:
version = os.environ["RELEASE_VERSION"]
if not version.startswith(VERSION):
raise ValueError(
"Release version does not match version: %s and %s"
% (version, VERSION)
)
return version
return VERSION
INSTALL_REQUIRES = [
# third-party packages
"aiofiles",
"argcomplete",
"beautifulsoup4",
"boto3",
"cachetools",
"dacite>=1.6.0,<1.8.0",
"Deprecated",
"ftfy",
"humanize",
"hypercorn>=0.13.2",
"Jinja2>=3",
# kaleido indirectly required by plotly for image export
# https://plotly.com/python/static-image-export/
"kaleido!=0.2.1.post1",
"matplotlib",
"mongoengine~=0.29.1",
"motor~=3.6.0",
"numpy",
"packaging",
"pandas",
"Pillow>=6.2",
"plotly>=4.14",
"pprintpp",
"psutil",
"pymongo~=4.9.2",
"pytz",
"PyYAML",
"regex",
"retrying",
"rtree",
"scikit-learn",
"scikit-image",
"scipy",
"setuptools",
"sseclient-py>=1.7.2,<2",
"sse-starlette>=0.10.3,<1",
"starlette>=0.24.0",
"strawberry-graphql",
"tabulate",
"xmltodict",
"universal-analytics-python3>=1.0.1,<2",
"pydash",
# internal packages
"fiftyone-brain>=0.17.0,<0.18",
"fiftyone-db>=0.4,<2.0",
"voxel51-eta>=0.13.0,<0.14",
]
CHOOSE_INSTALL_REQUIRES = [
(
(
"opencv-python",
"opencv-contrib-python",
"opencv-contrib-python-headless",
),
"opencv-python-headless",
)
]
def choose_requirement(mains, secondary):
chosen = secondary
for main in mains:
try:
name = re.split(r"[!<>=]", main)[0]
metadata.version(name)
chosen = main
break
except metadata.PackageNotFoundError:
pass
return str(chosen)
def get_install_requirements(install_requires, choose_install_requires):
for mains, secondary in choose_install_requires:
install_requires.append(choose_requirement(mains, secondary))
return install_requires
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="fiftyone",
version=get_version(),
description=(
"FiftyOne: the open-source tool for building high-quality datasets "
"and computer vision models"
),
author="Voxel51, Inc.",
author_email="info@voxel51.com",
url="https://github.com/voxel51/fiftyone",
license="Apache",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(
exclude=["app", "eta", "package", "requirements", "tests", "tools"]
),
install_requires=get_install_requirements(
INSTALL_REQUIRES, CHOOSE_INSTALL_REQUIRES
),
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
entry_points={"console_scripts": ["fiftyone=fiftyone.core.cli:main"]},
python_requires=">=3.9",
)