forked from facebookresearch/AnimatedDrawings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 912 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',
author_email='[email protected]',
python_requires='>=3.8.13',
install_requires=[
'numpy== 1.23.3',
'scipy==1.9.3',
'scikit-image==0.19.3',
'scikit-learn==1.1.2',
'shapely==1.8.5.post1',
'opencv-python==4.6.0.66',
'Pillow==9.3.0',
'glfw==2.5.5',
'PyOpenGL==3.1.6',
'PyYAML==6.0',
'requests==2.28.1',
'torchserve==0.7.0',
'tqdm==4.64.1',
'Flask==2.2.3'
],
packages=find_packages(),
)