Skip to content

CHANGE authors references via AUTHORS.md file. #22

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

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Authors

## Main Developers

- Tom Van Mele <<[email protected]>> [@tomvanmele](https://github.com/tomvanmele)
- Petras Vestartas <<[email protected]>> [@petrasvestartas](https://github.com/petrasvestartas)

## Contributors

- Li Chen <<[email protected]>> [@Licini](https://github.com/Licini)
- Rafael Pastrana <<[email protected]>> [@rafapastrana](https://github.com/rafapastrana)
- Ziqi Wang <<[email protected]>> [@qiqiustc](https://github.com/qiqiustc)
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

* Added authors and credits section using `AUTHORS.md`.

### Removed


Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,7 @@ Note that the functionality of the package is not directly available in Rhino, b
## License

Libigl (and therefore also `compas_libigl`) is licensed under MPL-2.

## Credits

COMPAS libigl is developed by the following authors: [list of authors](https://github.com/compas-dev/compas/blob/main/AUTHORS.md).
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ description = "libigl wrapper for COMPAS."
readme = "README.md"
requires-python = ">=3.9"
authors = [
{ name = "tom van mele", email = "[email protected]" },
{ name = "Petras Vestartas", email = "[email protected]" }
{ name = "COMPAS libigl authors", email = "[email protected]" }
]
classifiers = [
"License :: OSI Approved :: BSD License"
Expand Down
4 changes: 2 additions & 2 deletions src/compas_libigl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
from .meshing import trimesh_remesh_along_isoline, trimesh_remesh_along_isolines


__author__ = ["tom van mele", "petras vestartas"]
__author__ = "See AUTHORS.md for more information about COMPAS libigl authors."
__copyright__ = "Block Research Group - ETH Zurich"
__license__ = "Mozilla Public License Version 2.0"
__email__ = "[email protected], petrasvestartas@gmail.com"
__email__ = "tom.v.mele@gmail.com"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

in the interest of not duplicating information, perhaps we should just remove all of this, and just rely on the pyproject.toml file for all project meta data?

__version__ = "0.4.0"


Expand Down
Loading