Spaces:
Building
Building
Upload setup.py
Browse files- uploads_gradio/setup.py +30 -0
uploads_gradio/setup.py
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2 |
+
# This source code is licensed under the MIT license found in the
|
3 |
+
# LICENSE file in the root directory of this source tree.
|
4 |
+
|
5 |
+
from setuptools import find_packages, setup
|
6 |
+
|
7 |
+
setup(
|
8 |
+
name='animated_drawings',
|
9 |
+
description="Companion code for `A Method For Automatically Animating Children's Drawings of the Human Form.`",
|
10 |
+
author='FAIR',
|
11 |
+
author_email='jesse.smith@meta.com',
|
12 |
+
python_requires='>=3.8.13',
|
13 |
+
install_requires=[
|
14 |
+
'numpy==1.24.4',
|
15 |
+
'scipy==1.10.0',
|
16 |
+
'scikit-image==0.19.3',
|
17 |
+
'scikit-learn==1.1.2',
|
18 |
+
'shapely==1.8.5.post1',
|
19 |
+
'opencv-python==4.6.0.66',
|
20 |
+
'Pillow==10.1.0',
|
21 |
+
'glfw==2.5.5',
|
22 |
+
'PyOpenGL==3.1.6',
|
23 |
+
'PyYAML==6.0.1',
|
24 |
+
'requests==2.31.0',
|
25 |
+
'torchserve==0.7.0',
|
26 |
+
'tqdm==4.66.3',
|
27 |
+
'Flask==2.3.2'
|
28 |
+
],
|
29 |
+
packages=find_packages(),
|
30 |
+
)
|