forked from facebookresearch/ai4animationpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 917 Bytes
/
Copy pathsetup.py
File metadata and controls
35 lines (32 loc) · 917 Bytes
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
# Copyright (c) Meta Platforms, Inc. and affiliates.
from setuptools import find_packages, setup
_packages = find_packages()
setup(
name="ai4animation",
version="1.0.0",
description="AI4Animation Python Framework - Neural network-based character animation",
author="Paul Starke, Sebastian Starke",
packages=_packages,
package_dir={"ai4animation": "ai4animation"},
entry_points={
"console_scripts": [
"convert=ai4animation.Import.BatchConverter:main",
],
},
python_requires=">=3.12",
install_requires=[
"torch>=2.0.0",
"torchvision>=0.15.0",
"torchaudio>=2.0.0",
"raylib>=4.0.0",
"numpy>=1.21.0",
"scipy>=1.7.0",
"matplotlib>=3.10.3",
"scikit-learn>=1.7.1",
"einops>=0.8.1",
"pygltflib==1.16.5",
"pyscreenrec==0.6",
"tqdm",
"pyyaml",
],
)