Skip to content

Commit

Permalink
simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvanmele committed Feb 27, 2024
1 parent 86ac82e commit d70d8db
Showing 1 changed file with 11 additions and 15 deletions.
26 changes: 11 additions & 15 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,31 +7,25 @@ build-backend = "setuptools.build_meta"
# ============================================================================

[project]
dynamic = ['dependencies', 'optional-dependencies']
name = "compas_fd"
version = "0.4.2"
authors = [{ name = "tom van mele", email = "[email protected]" }]
description = "Constrained form finding using the Force Density Method."
keywords = ["form finding", "force density"]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.8"
dynamic = ['dependencies', 'optional-dependencies']
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
]
description = "Constrained form finding using the Force Density Method."
keywords = ["form finding", "force density"]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.8"

[project.urls]
Homepage = "https://blockresearchgroup.github.io/compas_fd"
Expand Down Expand Up @@ -104,17 +98,19 @@ target-version = "py39"

[tool.ruff.lint]
select = ["E", "F", "I"]
per-file-ignores = { "__init__.py" = ["I001"], "tests/*" = ["I001"] }

[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["I001"]
"tests/*" = ["I001"]
"tasks.py" = ["I001"]

[tool.ruff.lint.isort]
force-single-line = true
# known-first-party = ["compas_fd"]

[tool.ruff.lint.pydocstyle]
convention = "numpy"

[tool.ruff.lint.pycodestyle]
# max-line-length = 119
max-doc-length = 179

[tool.ruff.format]
Expand Down

0 comments on commit d70d8db

Please sign in to comment.