-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 824 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 824 Bytes
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
[project]
name = "cwmath"
version = "0.0.9"
authors = [{ name = "Cadwork", email = "it@cadwork.ca" }]
requires-python = ">= 3.10"
description = 'Cadwork Math Utilities'
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["cadwork"]
classifiers = [
"Development Status :: 3 - Alpha",
"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/cwmath"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["cwmath"]
package-dir = { "" = "src" }