-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (59 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
68 lines (59 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "lisdf"
description = "LISdf - a universal I/O spec for Task and Motion Planning (TAMP)."
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
authors = [
{ name = "Learning and Intelligent Systems (MIT CSAIL)", email = "willshen@mit.edu" }
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
]
keywords = ["robotics", "task and motion planning", "urdf", "sdf"]
dependencies = [
"pyyaml",
"numpy",
"lark",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/Learning-and-Intelligent-Systems/lisdf/"
[project.optional-dependencies]
develop = [
# Formatting
"black",
"isort",
# Linting and type checking
"flake8",
"mypy",
# Typing stubs for mypy
"types-PyYAML",
"types-mock",
# Testing
"pytest",
"pytest-cov",
"mock",
# LISdf models - comment out for now as pypi doesn't support git dependencies
# "lisdf_models@git+https://github.com/Learning-and-Intelligent-Systems/lisdf-models.git"
]
[tool.hatch.version]
path = "lisdf/__init__.py"
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
]
[tool.hatch.build.targets.wheel]
packages = ["lisdf"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.isort]
profile = "black"
skip = [".env", "env", ".venv", "venv"]
[tool.black]
target-version = ['py38']