-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpyproject.toml
60 lines (51 loc) · 1.2 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
[build-system]
requires = [
"setuptools>=45",
"wheel",
"setuptools_scm[toml]>=6.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "bd_warehouse"
#version = "0.1.0" # Uncomment this for the next release?
dynamic = ["version"]
authors = [
{name = "Roger Maitland", email = "gumyr9@gmail.com"},
]
description = "A python CAD programming library "
readme = "README.md"
requires-python = ">=3.9"
keywords = [
"3d models",
"3d printing",
"3d",
"brep",
"cad",
"cadquery",
"opencascade",
"python",
]
license = {text = "Apache-2.0"}
classifiers = [
"License :: OSI Approved :: Apache-2.0 License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
"build123d",
"typing_extensions >= 4.4.0, <5",
]
[tool.setuptools]
# ...
# By default, include-package-data is true in pyproject.toml, so you do
# NOT have to specify this line.
include-package-data = true
[tool.setuptools.packages.find]
namespaces = true
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.csv"]
# "bd_warehouse.data" = ["*.csv"]
# exclude = ["bd_warehouse._dev"]
[tool.setuptools_scm]
write_to = "src/bd_warehouse/_version.py"