Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

* Fixed `compas_libigl` plugins are not detected.
* Add project dependency groups in pyproject.toml.
* Change requirements.txt to pyproject.toml.

### Removed
Expand Down
28 changes: 23 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,36 @@ authors = [
{ name = "Petras Vestartas", email = "[email protected]" },
]
classifiers = ["License :: OSI Approved :: BSD License"]
dynamic = ['dependencies', 'optional-dependencies', 'version']

dynamic = ['version']
dependencies = [
"compas >=2.0.0",
"tessagon",
]

[project.urls]
Homepage = "https://compas.dev/compas_libigl/latest/"

# ============================================================================
# setuptools config
# pyproject dependecy groups
# ============================================================================

[tool.setuptools.dynamic]
dependencies = { file = "requirements.txt" }
optional-dependencies = { dev = { file = "requirements-dev.txt" } }
[dependency-groups]
dev = [
"ruff",
"pre-commit",
"build",
{ include-group = "tests" },
{ include-group = "docs" },
]
tests = [
"pytest",
"numpy",
]
docs = [
"sphinx",
"sphinx-compas-theme",
]

# ============================================================================
# pytest configuration
Expand Down
Loading