forked from axtimhaus/ezdxf-shapely
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (46 loc) · 1.27 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ezdxf-shapely"
dynamic = ["version"]
description = "Convert DXF entities created by ezdxf to shapely geomerty objects."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Max Weiner", email = "[email protected]" },
{name="Jon Robinson", email="[email protected]"}
]
maintainers = [
{ name = "Max Weiner", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
]
dependencies = [
"ezdxf ~= 1.3",
"numpy ~= 1.24",
"shapely ~= 2.0",
"geomdl ~= 5.3"
]
[project.urls]
Homepage = "https://github.com/axtimhaus/ezdxf-shapely"
Repository = "https://github.com/axtimhaus/ezdxf-shapely"
ForkedFrom = "https://github.com/aegis1980/cad-to-shapely"
[tool.hatch.envs.default]
path = ".venv"
dependencies = [
"plotly ~= 5.23",
"pytest ~= 7.1"
]
[tool.hatch.envs.hatch-static-analysis]
config-path = "ruff_defaults.toml"
[tool.hatch.version]
path = "ezdxf_shapely/__init__.py"
[tool.ruff]
extend = "ruff_defaults.toml"