-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
53 lines (49 loc) · 1.36 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
[project]
name = "cwapi3d"
version = "30.0.593"
authors = [{ name = "Cadwork", email = "[email protected]" }]
requires-python = ">= 3.10"
description = 'Python bindings for CwAPI3D'
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["cadwork"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
]
[project.urls]
Homepage = "https://github.com/cwapi3d/cwapi3dpython"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = [
"attribute_controller",
"bim_controller",
"cadwork",
"connector_axis_controller",
"dimension_controller",
"element_controller",
"endtype_controller",
"file_controller",
"geometry_controller",
"list_controller",
"machine_controller",
"material_controller",
"menu_controller",
"multi_layer_cover_controller",
"roof_controller",
"scene_controller",
"shop_drawing_controller",
"utility_controller",
"visualization_controller"
]
package-dir = { "" = "src" }
[tool.setuptools.exclude-package-data]
"*" = [".py"]