-
Notifications
You must be signed in to change notification settings - Fork 43
/
setup.py
423 lines (364 loc) · 13.2 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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import io
import os
# Note: To use the 'upload' functionality of this file, you must:
# $ pipenv install twine --dev
import shutil
import subprocess
import sys
from distutils.util import convert_path
from shutil import rmtree
from setuptools import Command, find_packages, setup
main_ns = {}
ver_path = convert_path("meerkat/version.py")
with open(ver_path) as ver_file:
exec(ver_file.read(), main_ns)
# Restrict ipython version based on the python version.
# https://github.com/ipython/ipython/issues/14053
# TODO: Remove this once the wheel is pushed up.
if sys.version_info[0] == 3 and sys.version_info[1] <= 8:
ipython_requirement = "IPython<8.13.0"
else:
# python >= 3.9
ipython_requirement = "IPython"
# Package meta-data.
NAME = "meerkat-ml"
DESCRIPTION = (
"Meerkat is building new data abstractions to make " "machine learning easier."
)
URL = "https://github.com/robustness-gym/meerkat"
EMAIL = "eyuboglu@stanford.edu"
AUTHOR = "The Meerkat Team"
REQUIRES_PYTHON = ">=3.7.0"
VERSION = main_ns["__version__"]
# What packages are required for this module to be executed?
REQUIRED = [
"dataclasses>=0.6",
"pandas",
"dill>=0.3.3",
"numpy>=1.18.0",
"cytoolz",
"ujson",
"torch>=1.7.0",
"scikit-learn",
"tqdm>=4.49.0",
"datasets>=1.4.1",
"pyarrow>=11.0.0",
"pydantic<2.0",
"PyYAML>=5.4.1",
"omegaconf>=2.0.5",
"semver>=2.13.0",
"multiprocess>=0.70.11",
"Cython>=0.29.21",
"progressbar>=2.5",
"fvcore",
"ipywidgets>=7.0.0",
ipython_requirement,
"fastapi",
"uvicorn",
"rich",
"cryptography",
"fastapi",
"wrapt",
"typer",
"jinja2",
"nbformat",
"sse-starlette",
"tabulate",
"pyparsing",
]
# Read in docs/requirements.txt
with open("docs/requirements.txt") as f:
DOCS_REQUIREMENTS = f.read().splitlines()
# What packages are optional?
EXTRAS = {
"dev": [
"black==22.12.0",
"isort>=5.12.0",
"flake8>=3.8.4",
"docformatter>=1.4",
"pytest-cov>=2.10.1",
"recommonmark>=0.7.1",
"parameterized",
"pre-commit>=2.9.3",
"twine",
"httpx",
"ray",
]
+ DOCS_REQUIREMENTS,
"embeddings-mac": [
"faiss-cpu",
"umap-learn[plot]",
],
"embeddings-linux": [
"faiss-gpu",
"umap-learn[plot]",
],
"text": [
"transformers",
"spacy>=3.0.0",
],
"vision": ["torchvision>=0.9.0", "opencv-python", "Pillow"],
"audio": ["torchaudio"],
"medimg": [
"pyvoxel",
"kaggle",
"google-cloud-storage",
"google-cloud-bigquery[bqstorage,pandas]",
],
}
EXTRAS["all"] = list(set(sum(EXTRAS.values(), [])))
# The rest you shouldn't have to touch too much :)
# ------------------------------------------------
# Except, perhaps the License and Trove Classifiers!
# If you do change the License, remember to change the Trove Classifier for that!
here = os.path.abspath(os.path.dirname(__file__))
# Import the README and use it as the long-description.
# Note: this will only work if 'README.md' is present in your MANIFEST.in file!
try:
with io.open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = "\n" + f.read()
except FileNotFoundError:
long_description = DESCRIPTION
# Load the package's __version__.py module as a dictionary.
about = {}
if not VERSION:
project_slug = NAME.lower().replace("-", "_").replace(" ", "_")
with open(os.path.join(here, project_slug, "__version__.py")) as f:
exec(f.read(), about)
else:
about["__version__"] = VERSION
class UploadCommand(Command):
"""Support setup.py upload."""
description = "Build and publish the package."
user_options = [("skip-upload", "u", "skip git tagging and pypi upload")]
boolean_options = ["skip-upload"]
@staticmethod
def status(s):
"""Prints things in bold."""
print("\033[1m{0}\033[0m".format(s))
def initialize_options(self):
self.skip_upload = False
def finalize_options(self):
self.skip_upload = bool(self.skip_upload)
def run(self):
from huggingface_hub.repository import Repository
try:
self.status("Removing previous builds…")
rmtree(os.path.join(here, "dist"))
rmtree(os.path.join(here, "build"))
except OSError:
pass
# Build static components
self.status("Building static components…")
env = os.environ.copy()
env.update({"VITE_API_URL_PLACEHOLDER": "http://meerkat.dummy"})
if os.path.exists("./meerkat/interactive/app/build"):
shutil.rmtree("./meerkat/interactive/app/build")
build_process = subprocess.run(
"npm run build",
env=env,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
shell=True,
cwd="./meerkat/interactive/app",
)
if build_process.returncode != 0:
print(build_process.stdout.decode("utf-8"))
sys.exit(1)
# Package static components to a tar file and push to huggingface.
# This requires having write access to meerkat-ml.
# TODO: Consider making this a github action.
self.status("Packaging static component build...")
components_build_targz = shutil.make_archive(
base_name=f"static-build-{VERSION}",
format="gztar",
root_dir="./meerkat/interactive/app/build",
)
self.status("Uploading static build to huggingface...")
local_repo_dir = os.path.abspath(
os.path.expanduser("~/.meerkat/hf/component-static-builds")
)
repo = Repository(
local_dir=local_repo_dir,
clone_from="meerkat-ml/component-static-builds",
repo_type="dataset",
token=os.environ.get("HF_TOKEN", True),
)
shutil.move(
components_build_targz,
os.path.join(local_repo_dir, os.path.basename(components_build_targz)),
)
repo.git_pull()
repo.push_to_hub(commit_message=f"{VERSION}: new component builds")
# Build the source and wheel.
self.status("Building Source and Wheel (universal) distribution…")
os.system("{0} setup.py sdist bdist_wheel --universal".format(sys.executable))
if self.skip_upload:
self.status("Skipping git tagging and pypi upload")
sys.exit()
self.status("Uploading the package to PyPI via Twine…")
os.system("twine upload dist/*")
self.status("Pushing git tags…")
os.system("git tag v{0}".format(about["__version__"]))
os.system("git push --tags")
sys.exit()
class BumpVersionCommand(Command):
"""
To use: python setup.py bumpversion -v <version>
This command will push the new version directly and tag it.
"""
description = "Installs the foo."
user_options = [
("version=", "v", "the new version number"),
]
@staticmethod
def status(s):
"""Prints things in bold."""
print("\033[1m{0}\033[0m".format(s))
def initialize_options(self):
self.version = None
self.base_branch = None
self.version_branch = None
self.updated_files = [
"meerkat/version.py",
"meerkat/interactive/app/package.json",
"meerkat/interactive/app/package-lock.json",
]
def finalize_options(self):
# This package cannot be imported at top level because it
# is not recognized by Github Actions.
from packaging import version
if self.version is None:
raise ValueError("Please specify a version number.")
current_version = VERSION
if not version.Version(self.version) > version.Version(current_version):
raise ValueError(
f"New version ({self.version}) must be greater than "
f"current version ({current_version})."
)
def _undo(self):
os.system(f"git restore --staged {' '.join(self.updated_files)}")
os.system(f"git checkout -- {' '.join(self.updated_files)}")
# Return to the original branch
os.system(f"git checkout {self.base_branch}")
os.system(f"git branch -D {self.version_branch}")
def run(self):
self.status("Checking current branch is 'main'")
self.base_branch = current_branch = get_git_branch()
if current_branch != "main":
raise RuntimeError(
"You can only bump the version from the 'main' branch. "
"You are currently on the '{}' branch.".format(current_branch)
)
self.status("Pulling latest changes from origin")
err_code = os.system("git pull")
if err_code != 0:
raise RuntimeError("Failed to pull from origin/main.")
self.status("Checking working directory is clean")
err_code = os.system("git diff --exit-code")
err_code += os.system("git diff --cached --exit-code")
if err_code != 0:
raise RuntimeError("Working directory is not clean.")
self.version_branch = f"bumpversion/v{self.version}"
self.status(f"Create branch '{self.version_branch}'")
err_code = os.system(f"git checkout -b {self.version_branch}")
if err_code != 0:
raise RuntimeError("Failed to create branch.")
# Change the version in meerkat/version.py
self.status(f"Updating version {VERSION} -> {self.version}")
update_version(self.version)
# TODO: Add a check to make sure the version actually updated.
# if VERSION != self.version:
# self._undo()
# raise RuntimeError("Failed to update version.")
self.status(f"npm install to bump package-lock.json")
err_code = os.system("mk install")
if err_code != 0:
self._undo()
raise RuntimeError("Failed to update package-lock.json.")
self.status(f"Adding {', '.join(self.updated_files)} to git")
err_code = os.system(f"git add {' '.join(self.updated_files)}")
if err_code != 0:
self._undo()
raise RuntimeError("Failed to add file to git.")
self.status(f"Commit with message '[bumpversion] v{self.version}'")
err_code = os.system("git commit -m '[bumpversion] v{}'".format(self.version))
if err_code != 0:
self._undo()
raise RuntimeError("Failed to commit file to git.")
# Push the commit to origin.
self.status(f"Pushing commit to origin/{self.version_branch}")
err_code = os.system(
f"git push --force --set-upstream origin {self.version_branch}"
)
if err_code != 0:
# TODO: undo the commit automatically.
self._undo()
raise RuntimeError("Failed to push commit to origin.")
os.system(f"git checkout {self.base_branch}")
os.system(f"git branch -D {self.version_branch}")
sys.exit()
def update_version(version):
import json
# Update python.
ver_path = convert_path("meerkat/version.py")
init_py = [
line if not line.startswith("__version__") else f'__version__ = "{version}"\n'
for line in open(ver_path, "r").readlines()
]
with open(ver_path, "w") as f:
f.writelines(init_py)
# Update npm.
ver_path = convert_path("meerkat/interactive/app/package.json")
with open(ver_path, "r") as f:
package_json = json.load(f)
package_json["version"] = version
with open(ver_path, "w") as f:
json.dump(package_json, f, indent=4)
f.write("\n")
def get_git_branch():
"""Return the name of the current branch."""
proc = subprocess.Popen(["git branch"], stdout=subprocess.PIPE, shell=True)
(out, err) = proc.communicate()
if err is not None:
raise RuntimeError(f"Error finding git branch: {err}")
out = out.decode("utf-8").split("\n")
current_branch = [line for line in out if line.startswith("*")][0]
current_branch = current_branch.replace("*", "").strip()
return current_branch
# Where the magic happens:
setup(
name=NAME,
version=about["__version__"],
description=DESCRIPTION,
long_description=long_description,
long_description_content_type="text/markdown",
author=AUTHOR,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
url=URL,
packages=find_packages(exclude=["tests", "*.tests", "*.tests.*", "tests.*", "demo"])
+ ["meerkat-demo"],
package_dir={"meerkat-demo": "demo"},
# If your package is a single module, use this instead of 'packages':
# py_modules=['mypackage'],
entry_points={
"console_scripts": ["mk=meerkat.cli.main:cli"],
},
install_requires=REQUIRED,
extras_require=EXTRAS,
include_package_data=True,
license="Apache 2.0",
classifiers=[
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
# $ setup.py publish support.
cmdclass={"upload": UploadCommand, "bumpversion": BumpVersionCommand},
)