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
16 changes: 8 additions & 8 deletions pixi.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 0 additions & 36 deletions pixi.toml

This file was deleted.

93 changes: 93 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
[build-system]
requires = ["hatchling>=1.18"]
build-backend = "hatchling.build"

[project]
name = "vinca"
dynamic = ["version"]
description = "Conda recipe generator for ROS packages."
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Sean Yen", email = "[email protected]" },
{ name = "Silvio Traversaro", email = "[email protected]" },
{ name = "Tobias Fischer", email = "[email protected]" },
]
maintainers = [
{ name = "Silvio Traversaro" },
{ name = "Tobias Fischer" },
]
requires-python = ">=3.9"
keywords = ["ros"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Operating System :: OS Independent",
"Topic :: Software Development :: Build Tools",
]

dependencies = [
"catkin_pkg >=0.4.16",
"ruamel.yaml >=0.16.6,<0.18.0",
"rosdistro >=0.8.0",
"empy >=3.3.4,<4.0.0",
"requests >=2.24.0",
"networkx >=2.5",
"rich >=10",
"jinja2 >=3.0.0",
"license-expression >=30.0.0",
]

[project.urls]
Homepage = "https://github.com/RoboStack/vinca"
GitHub = "https://github.com/RoboStack/vinca"

[project.scripts]
vinca = "vinca.main:main"
vinca-glab = "vinca.generate_gitlab:main"
vinca-gha = "vinca.generate_gha:main"
vinca-azure = "vinca.generate_azure:main"
vinca-migrate = "vinca.migrate:main"
vinca-snapshot = "vinca.snapshot:main"

[tool.hatch.version]
path = "vinca/__init__.py"

[tool.hatch.build]
include = [
"vinca/templates/**",
"vinca/azure_templates/**",
]

[tool.hatch.build.targets.wheel]
packages = ["vinca"]

[tool.pixi.workspace]
channels = ["https://prefix.dev/conda-forge"]
platforms = ["win-64", "linux-64", "osx-arm64", "osx-64"]

[tool.pixi.tasks]
test = "pytest vinca/"
fmt = "ruff format ."
fmt-check = "ruff format --check ."
lint = "ruff check --fix ."
lint-check = "ruff check ."

[tool.pixi.dependencies]
python = ">=3.14.0,<3.15"
catkin_pkg = ">=0.4.16"
"ruamel.yaml" = ">=0.16.6,<0.18.0"
rosdistro = ">=0.8.0"
empy = ">=3.3.4,<4.0.0"
requests = ">=2.24.0"
networkx = ">=2.5"
rich = ">=10"
jinja2 = ">=3.0.0"
license-expression = ">=30.0.0"
pytest = "*"
ruff = "*"

[tool.pixi.pypi-dependencies]
vinca = { path = ".", editable = true }
2 changes: 1 addition & 1 deletion ruff.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
line-length = 88
target-version = "py37"
target-version = "py39"

[lint]
# Ignore rules that were excluded in .flake8:
Expand Down
50 changes: 0 additions & 50 deletions setup.cfg

This file was deleted.

9 changes: 0 additions & 9 deletions setup.py

This file was deleted.