-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
34 lines (31 loc) · 1006 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
31
32
33
34
import setuptools
if __name__=="__main__":
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='cd-fvd',
version="0.1.0",
author="Songwei Ge",
author_email="[email protected]",
description="FVD calculation in PyTorch with I3D or VideoMAE models",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"torch",
"torchvision",
"numpy>=1.14.3",
"scipy>=1.0.1",
"tqdm>=4.28.1",
"pillow>=8.1",
"requests",
"einops"
],
url="https://github.com/songweige/content-debiased-fvd",
packages=['cdfvd'],
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
)