forked from GaParmar/clean-fid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 876 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='clean-fid',
version='0.1.16',
author="Gaurav Parmar",
author_email="[email protected]",
description="FID calculation in PyTorch with proper image resizing and quantization steps",
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==2.25.1"
],
url="https://github.com/GaParmar/clean-fid",
packages=['cleanfid'],
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
)