3 Star 4 Fork 1

Gitee 极速下载 / AugLy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/facebookresearch/AugLy
克隆/下载
setup.py 1.64 KB
一键复制 编辑 原始数据 按行查看 历史
Zoe Papakipos 提交于 2022-03-29 04:34 . Update pypi to augly==1.0.0 (#206)
#!/usr/bin/env python3
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
import os
from pathlib import Path
import setuptools
requirements = [
r for r in Path("requirements.txt").read_text().splitlines() if "@" not in r
]
extra_requirements = {
module: [
r
for r in Path(os.path.join("augly", module, "requirements.txt"))
.read_text()
.splitlines()
if "@" not in r
]
for module in ["audio", "image", "text", "video"]
}
extra_requirements["video"].extend(
extra_requirements["audio"] + extra_requirements["image"]
)
extra_requirements["all"] = list(
{r for reqs in extra_requirements.values() for r in reqs}
)
with open("README.md", encoding="utf8") as f:
readme = f.read()
with open("version.txt", "r") as f:
version = f.read().strip()
setuptools.setup(
name="augly",
version=version,
description="A data augmentations library for audio, image, text, & video.",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/facebookresearch/AugLy",
author="Zoe Papakipos and Joanna Bitton",
author_email="zoep@fb.com",
packages=setuptools.find_packages(exclude=["augly.tests"]),
include_package_data=True,
install_requires=requirements,
extras_require=extra_requirements,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)
Python
1
https://gitee.com/mirrors/AugLy.git
git@gitee.com:mirrors/AugLy.git
mirrors
AugLy
AugLy
main

搜索帮助