-
Notifications
You must be signed in to change notification settings - Fork 303
/
Copy pathsetup.py
62 lines (52 loc) · 1.64 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
#!/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",
)