-
Notifications
You must be signed in to change notification settings - Fork 932
/
setup.py
30 lines (28 loc) · 915 Bytes
/
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
# Copyright (c) Meta Platforms, Inc. and affiliates.
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
from setuptools import find_packages, setup
setup(
name='animated_drawings',
description="Companion code for `A Method For Automatically Animating Children's Drawings of the Human Form.`",
author='FAIR',
python_requires='>=3.8.13',
install_requires=[
'numpy==1.24.4',
'scipy==1.10.0',
'scikit-image==0.19.3',
'scikit-learn==1.1.2',
'shapely==1.8.5.post1',
'opencv-python==4.6.0.66',
'Pillow==10.1.0',
'glfw==2.5.5',
'PyOpenGL==3.1.6',
'PyYAML==6.0.1',
'requests==2.31.0',
'torchserve==0.7.0',
'tqdm==4.66.3',
'Flask==2.3.2'
],
packages=find_packages(),
)