-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 886 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (38 loc) · 886 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[project]
name = "topax"
dynamic = ["version"]
authors = [
{ name="Andy" },
]
description = "Topax - A Full Stack Implicit Geometry CAD Package for Python"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"numpy",
"PyOpenGL",
"PyOpenGL_accelerate",
"glfw",
"watchdog",
"ipython",
"jinja2"
]
license = "AGPL-3.0"
license-files = ["LICENSE"]
[project.urls]
Source = "https://github.com/andycate/topax"
[project.scripts]
topax = "topax._app:main"
[build-system]
requires = ["setuptools >= 77.0.3", "versioneer[toml]"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
topax = ["templates/**", "resources/**"]
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "topax/_version.py"
versionfile_build = "topax/_version.py"
tag_prefix = "v"
parentdir_prefix = "topax-"