-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
47 lines (45 loc) · 1.68 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
from setuptools import setup, find_packages
packages = find_packages()
setup(
name='ddranking', # Package name
version='0.1.2', # Version number
description='DD-Ranking: Rethinking the Evaluation of Dataset Distillation',
long_description=open('README.md').read(), # Use your README as the long description
long_description_content_type='text/markdown',
author='Data Intelligence Team',
author_email='[email protected]',
# url={
# 'leaderboard': 'https://github.com/NUS-HPC-AI-Lab/DD-Ranking',
# 'repository': 'https://github.com/NUS-HPC-AI-Lab/DD-Ranking',
# 'documentation': 'https://github.com/NUS-HPC-AI-Lab/DD-Ranking'
# },
# license='MIT', # License type
include_dirs=['dd_ranking', 'configs'],
include_package_data=True,
packages=packages, # Automatically discover submodules
install_requires=[
'torch',
'numpy',
'torchvision',
'tqdm',
'scipy',
'pandas',
'kornia',
'timm'
],
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.8',
)