-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[MRG] Release 0.3.0, pyproject.toml an Citations files #215
Conversation
rflamary
commented
Jul 5, 2024
•
edited
Loading
edited
- Add CITATION.cff file with all co-authors of SKADA
- Add citation information to readme
- cleanup version in setup files (use pyproject.toml)
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #215 +/- ##
==========================================
- Coverage 97.01% 96.99% -0.02%
==========================================
Files 54 54
Lines 5319 5319
==========================================
- Hits 5160 5159 -1
- Misses 159 160 +1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A few comments (maybe too late)
# Visit https://bit.ly/cffinit to generate yours today! | ||
|
||
cff-version: 1.2.0 | ||
title: 'SKADA : Scikit Adaptation' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
title: 'SKADA : Scikit Adaptation' | |
title: 'SKADA: Scikit Adaptation' |
authors: | ||
- given-names: Théo | ||
family-names: Gnassounou | ||
affiliation: University Paris-Saclay, Inria, CEA |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
affiliation: University Paris-Saclay, Inria, CEA | |
affiliation: 'University Paris-Saclay, Inria, CEA' |
family-names: Mellot | ||
affiliation: 'University Paris-Saclay, Inria, CEA' | ||
- given-names: Virginie | ||
family-names: ' Loison' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
family-names: ' Loison' | |
family-names: Loison |
affiliation: 'University Paris-Saclay, Inria, CEA' | ||
- given-names: Ambroise | ||
family-names: Odonnat | ||
affiliation: Huawei Noah’s Ark Lab |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
affiliation: Huawei Noah’s Ark Lab | |
affiliation: 'Huawei Noah’s Ark Lab' |
- machine learning | ||
- scikit-learn | ||
- pytorch | ||
- domain adaptation |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- machine learning | |
- scikit-learn | |
- pytorch | |
- domain adaptation | |
- machine learning | |
- domain adaptation | |
- scikit-learn | |
- pytorch |
{name = "SKADA Team"}, | ||
] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
{name = "SKADA Team"}, | |
] | |
{name = "SKADA Team"}, | |
] |
packages = ["skada"] | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "skada.version.__version__"} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
version = {attr = "skada.version.__version__"} | |
version = {attr = "skada.version.__version__"} | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you can now remove this file with the pyproject.toml
I think?
Or do you still need it for pip install -e .
?