Skip to content

Commit 9f34cde

Browse files
Setup
1 parent 6f8c339 commit 9f34cde

File tree

7 files changed

+41
-3
lines changed

7 files changed

+41
-3
lines changed

.pypirc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[distutils]
2+
index-servers =pypi
3+
4+
[pypi]
5+
repository:https://upload.pypi.org/legacy/
6+
username:zekai_li
7+
password:Lzk@Cwq020304

LICENSE

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,23 @@ This project incorporates code from the following repositories:
3535
License: Apache License 2.0
3636

3737
The licenses of the above repositories are compatible with the license of this project.
38+
39+
Copyright (c) 2021 The Python Packaging Authority
40+
41+
Permission is hereby granted, free of charge, to any person obtaining a copy
42+
of this software and associated documentation files (the "Software"), to deal
43+
in the Software without restriction, including without limitation the rights
44+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
45+
copies of the Software, and to permit persons to whom the Software is
46+
furnished to do so, subject to the following conditions:
47+
48+
The above copyright notice and this permission notice shall be included in all
49+
copies or substantial portions of the Software.
50+
51+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
52+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
53+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
54+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
55+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
56+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
57+
SOFTWARE.

MANIFEST.in

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
include LICENSE
2+
include README.md
3+
recursive-include config *
4+
recursive-include dd_ranking *
5+
recursive-exclude __pycache__ *
6+
recursive-exclude *.log *
34 KB
Binary file not shown.

dist/dd_ranking-0.1.0.tar.gz

30 KB
Binary file not shown.

pyproject.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
99
[project]
1010
name = "dd_ranking"
1111
version = "0.1.0"
12-
description = "DD-Ranking: A unified benchmark for dataset distillation method evaluation"
12+
description = "DD-Ranking: Rethinking the Evaluation of Dataset Distillation"
1313
readme = "README.md"
1414
requires-python = ">=3.8"
1515
dependencies = [
@@ -22,3 +22,8 @@ dependencies = [
2222
"kornia",
2323
"timm"
2424
]
25+
26+
[project.urls]
27+
leaderboard = "https://huggingface.co/spaces/Soptq/DD-Ranking"
28+
repository = "https://github.com/NUS-HPC-AI-Lab/DD-Ranking"
29+
documentation = "https://nus-hpc-ai-lab.github.io/DD-Ranking/"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
author='DD-Ranking Team',
1212
author_email='[email protected]',
1313
url={
14-
'homepage': 'https://github.com/NUS-HPC-AI-Lab/DD-Ranking',
14+
'leaderboard': 'https://huggingface.co/spaces/Soptq/DD-Ranking',
1515
'repository': 'https://github.com/NUS-HPC-AI-Lab/DD-Ranking',
16-
'documentation': 'https://github.com/NUS-HPC-AI-Lab/DD-Ranking'
16+
'documentation': 'https://nus-hpc-ai-lab.github.io/DD-Ranking/'
1717
},
1818
# license='MIT', # License type
1919
include_dirs=['dd_ranking', 'configs'],

0 commit comments

Comments
 (0)