-
Notifications
You must be signed in to change notification settings - Fork 74
/
setup.py
33 lines (30 loc) · 1007 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
import setuptools
if __name__=="__main__":
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='clean-fid',
version="0.1.35",
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"
],
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",
],
)