forked from voxel51/fiftyone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
131 lines (122 loc) · 4.26 KB
/
Copy pathsetup.py
File metadata and controls
131 lines (122 loc) · 4.26 KB
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
#!/usr/bin/env python
"""
Installs FiftyOne.
| Copyright 2017-2026, Voxel51, Inc.
| `voxel51.com <https://voxel51.com/>`_
|
"""
import os
from setuptools import setup, find_packages
VERSION = "1.22.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
with open("README.md", "r", encoding="utf-8") 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=[
# python-packaged or meta libraries (unconstrained)
"Deprecated", # Don't constrain python-packaged `Deprecated`
"packaging", # Don't constrain python-packaged `packaging`
"setuptools", # Don't constrain python-packaged `setuptools`
# third-party packages (constrained at lower and upper majors)
"aiofiles>=20,<26",
"argcomplete>=2,<4",
"async_lru>=2,<3",
"beautifulsoup4>=2,<5", # BS4 will only have 4.x versions
"boto3>=1,<2",
"cachetools>=5,<8",
"dacite>=1.6.0,<2",
"dill>=0.1,<0.5",
"exceptiongroup>=1,<2",
"ftfy>=4,<7",
"humanize>=2,<5",
"hypercorn>=0.13.2,<0.19",
"Jinja2>=3,<4",
"jsonpatch>=1,<2",
"mongoengine~=0.29.1", # Keep small bounds on mongo-related libraries
"Pillow>=12.2",
"plotly>=6.1.1,<7",
"pprintpp>=0.1,<0.5",
"psutil>=5,<8",
"pydash>=6,<9",
"pymongo~=4.15.2", # Keep small bounds on mongo-related libraries
"pytz", # Doesn't follow semver, keep unconstrained
"PyYAML>=4,<7",
"regex", # Doesn't follow semver, keep unconstrained
"retrying>=1,<2",
"sseclient-py>=1.7.2,<2",
"sse-starlette>=0.10.3,<4",
"starlette>=1.3.1,<1.4",
"strawberry-graphql>=0.315.7,<0.317.0",
"tabulate>=0.7,<0.11",
"tqdm>=2,<5",
"xmltodict>=1,<2",
"universal-analytics-python3>=1.0.1,<2",
# ML Libraries
"matplotlib<4",
"numpy<3",
"opencv-python-headless<5",
"pandas<4",
"pypcd4>=1.4,<2",
"rtree<2",
"scikit-learn<2",
"scikit-image<1",
"scipy<2",
# internal packages
"fiftyone-brain>=0.24.0,<0.25",
"fiftyone-db>=0.4,<2.0",
"voxel51-eta>=0.17,<0.18",
],
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"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.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
],
entry_points={"console_scripts": ["fiftyone=fiftyone.core.cli:main"]},
python_requires=">=3.10",
extras_require={
"multimodal-mcap": [
"protobuf==6.33.6",
],
"multimodal": ["fiftyone[multimodal-mcap]"],
},
)