-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create CONTRIBUTING.md * Create CITATION.cff * update links and remove reference to object recognition * adding orcid to authors in CITATION.cff --------- Co-authored-by: Petr Andriushchenko <[email protected]>
- Loading branch information
Showing
3 changed files
with
69 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
cff-version: 1.2.0 | ||
message: "If you use this software, please cite it as below." | ||
authors: | ||
- family-names: "Dumitrescu" | ||
given-names: "Delia" | ||
orcid: "https://orcid.org/0000-0002-0065-3875" | ||
- family-names: "Ulusoy" | ||
given-names: "Inga" | ||
orcid: "https://orcid.org/0000-0001-7294-4148" | ||
- family-names: "Andriushchenko" | ||
given-names: "Petr" | ||
orcid: "https://orcid.org/0000-0002-4518-6588" | ||
- family-names: "Daskalakis" | ||
given-names: "Gwydion" | ||
orcid: "https://orcid.org/0000-0002-7557-1364" | ||
- family-names: "Kempf" | ||
given-names: "Dominic" | ||
orcid: "https://orcid.org/0000-0002-6140-2332" | ||
- family-names: "Ma" | ||
given-names: "Xianghe" | ||
title: "AMMICO, an AI Media and Misinformation Content Analysis Tool" | ||
version: 0.2.0 | ||
doi: 10.31235/osf.io/v8txj | ||
date-released: 2023-9-4 | ||
url: "https://github.com/ssciwr/AMMICO" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Contributing to ammico | ||
|
||
Welcome to `ammico`! Contributions to the package are welcome. Please adhere to the following conventions: | ||
|
||
- fork the repository, make your changes, and make sure your changes pass all the tests (Sonarcloud, unit and integration tests, codecoverage limits); then open a Pull Request for your changes. Tag one of `ammico`'s developers for review. | ||
- install and use the pre-commit hooks by running `pre-commit install` in the repository directory so that all your changes adhere to the PEP8 style guide and black code formatting | ||
- make sure to update the documentation if applicable | ||
|
||
The tests are located in `ammico/tests`. Unit tests are named `test` following an underscore and the name of the module; inside the unit test modules, each test function is named `test` followed by an underscore and the name of the function/method that is being tested. | ||
|
||
To report bugs and issues, please [open an issue](https://github.com/ssciwr/ammico/issues) describing what you did, what you expected to happen, and what actually happened. Please provide information about the environment as well as OS. | ||
|
||
For any questions and comments, feel free to post to our [Discussions forum]((https://github.com/ssciwr/AMMICO/discussions/151)). | ||
|
||
**Thank you for contributing to `ammico`!** | ||
|
||
## Templates | ||
### Template for pull requests | ||
|
||
- issues that are addressed by this PR: [*For example, this closes #33 or this addresses #29*] | ||
|
||
- changes that were made: [*For example, updated version of dependencies or added a file type for input reading*] | ||
|
||
- if applicable: Follow-up work that is required | ||
|
||
### Template for bug report | ||
|
||
- what I did: | ||
|
||
- what I expected: | ||
|
||
- what actually happened: | ||
|
||
- Python version and environment: | ||
|
||
- Operating system: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters