Skip to content

Commit 42ed421

Browse files
CHANGE authors references via AUTHORS.md file.
1 parent 60b563d commit 42ed421

File tree

5 files changed

+21
-4
lines changed

5 files changed

+21
-4
lines changed

AUTHORS.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Authors
2+
3+
## Main Developers
4+
5+
- Tom Van Mele <<[email protected]>> [@tomvanmele](https://github.com/tomvanmele)
6+
- Petras Vestartas <<[email protected]>> [@petrasvestartas](https://github.com/petrasvestartas)
7+
8+
## Contributors
9+
10+
- Li Chen <<[email protected]>> [@Licini](https://github.com/Licini)
11+
- Rafael Pastrana <<[email protected]>> [@rafapastrana](https://github.com/rafapastrana)
12+
- Ziqi Wang <<[email protected]>> [@qiqiustc](https://github.com/qiqiustc)

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Changed
1313

14+
* Added authors and credits section using `AUTHORS.md`.
15+
1416
### Removed
1517

1618

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,7 @@ Note that the functionality of the package is not directly available in Rhino, b
4545
## License
4646

4747
Libigl (and therefore also `compas_libigl`) is licensed under MPL-2.
48+
49+
## Credits
50+
51+
COMPAS libigl is developed by the following authors: [list of authors](https://github.com/compas-dev/compas/blob/main/AUTHORS.md).

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ description = "libigl wrapper for COMPAS."
88
readme = "README.md"
99
requires-python = ">=3.9"
1010
authors = [
11-
{ name = "tom van mele", email = "[email protected]" },
12-
{ name = "Petras Vestartas", email = "[email protected]" }
11+
{ name = "COMPAS libigl authors", email = "[email protected]" }
1312
]
1413
classifiers = [
1514
"License :: OSI Approved :: BSD License"

src/compas_libigl/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
from .meshing import trimesh_remesh_along_isoline, trimesh_remesh_along_isolines
1313

1414

15-
__author__ = ["tom van mele", "petras vestartas"]
15+
__author__ = "See AUTHORS.md for more information about COMPAS libigl authors."
1616
__copyright__ = "Block Research Group - ETH Zurich"
1717
__license__ = "Mozilla Public License Version 2.0"
18-
18+
__email__ = "[email protected]"
1919
__version__ = "0.4.0"
2020

2121

0 commit comments

Comments
 (0)