File tree Expand file tree Collapse file tree 4 files changed +23
-4
lines changed
Expand file tree Collapse file tree 4 files changed +23
-4
lines changed Original file line number Diff line number Diff line change 1+ * .egg
2+ * .eggs
3+ * .eggs-info
4+ * .eggs /
5+ eggs-info /*
6+ dd_ranking.eggs-info /*
7+ PKG-INFO
8+ build /
9+ * .pyc
10+ * .txt
Original file line number Diff line number Diff line change 1-
1+ from .aug import *
2+ from .config import *
3+ from .loss import *
4+ from .metrics import *
5+ from .utils import *
Original file line number Diff line number Diff line change 11from setuptools import setup , find_packages
22
3+ packages = find_packages ()
4+ # print('>>> Packages:', packages)
5+
36setup (
4- name = 'DD-Ranking ' , # Package name
7+ name = 'dd_ranking ' , # Package name
58 version = '0.1.0' , # Version number
69 description = 'DD-Ranking: A unified benchmark for dataset distillation method evaluation' ,
710 long_description = open ('README.md' ).read (), # Use your README as the long description
1316 'repository' : 'https://github.com/NUS-HPC-AI-Lab/DD-Ranking' ,
1417 'documentation' : 'https://github.com/NUS-HPC-AI-Lab/DD-Ranking'
1518 },
16- license = 'MIT' , # License type
17- packages = find_packages (), # Automatically discover submodules
19+ # license='MIT', # License type
20+ include_dirs = ['dd_ranking' , 'configs' ],
21+ include_package_data = True ,
22+ packages = packages , # Automatically discover submodules
1823 install_requires = [
1924 'torch' ,
2025 'numpy' ,
You can’t perform that action at this time.
0 commit comments