-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 939 Bytes
/
setup.py
File metadata and controls
36 lines (34 loc) · 939 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
from setuptools import setup, find_namespace_packages
setup(
name="worldscore",
version="1.0.0",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="stanford",
packages=find_namespace_packages(include=["worldscore*"]),
python_requires='>=3.8',
install_requires=[
"av",
"python-dotenv",
"omegaconf",
"submitit",
"structlog",
"pyfiglet",
"numpy",
"pillow",
"opencv-python",
"scipy",
"fire",
"hydra-core",
"requests"
],
include_package_data=True,
entry_points={
'console_scripts': [
'worldscore=worldscore.cli:main',
'worldscore-eval=worldscore.run_evaluate:main',
'worldscore-analysis=worldscore.run_analysis:main',
'worldscore-gen=worldscore.run_generate:main',
],
},
)