-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
73 lines (65 loc) · 2.4 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "floorplan-dsl"
description = "Python realization of metamodels for indoor environment"
# dynamic = ["version"]
version = "1.1.0"
license = {file="LICENSE"}
dependencies = [
"matplotlib>=3.7.2",
"numpy>=1.24.4,<2.0.0",
"textX[cli]>=4.0.0",
"textX-jinja",
"pyyaml",
"shapely",
]
requires-python = ">= 3.6"
readme = "README.md"
maintainers = [
{name = "SECORO Group", email = "[email protected]"}
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Interpreters",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
dev =["wheel", "twine", "black>=24.4.2"]
test =[
"flake8",
"tox",
"coverage",
"coveralls",
"pytest",
]
[project.entry-points.textx_languages]
floorplan-v1 = "floorplan_dsl.registration:floorplan_lang"
floorplan-v2 = "floorplan_dsl.registration:fpv2_lang"
floorplan-variation = "floorplan_dsl.registration:variation_lang"
[project.entry-points.textx_generators]
variation-to-floorplan = "floorplan_dsl.registration:variation_floorplan_gen"
floorplan-to-jsonld = "floorplan_dsl.registration:json_ld_floorplan_gen"
floorplan-v1-to-floorplan-v2 = "floorplan_dsl.registration:floorplan_v1_to_v2_gen"
[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)
# include = ["my_package*"] # package names should match these glob patterns (["*"] by default)
# exclude = ["my_package.tests*"] # exclude packages matching these glob patterns (empty by default)
# namespaces = false # to disable scanning PEP 420 namespaces (true by default)
[tool.setuptools.package-data]
"*" = ["*.tx", "*.jinja", "*.json"]