| [build-system] |
| requires = ["setuptools>=64", "wheel"] |
| build-backend = "setuptools.build_meta" |
|
|
| [project] |
| name = "pixel3dmm" |
| version = "0.0.1" |
| description = "<<<ENTER_DESCRIPTION>>>" |
| authors = [ |
| { name = "Simon Giebenhain", email = "simon.giebenhain@tum.de" }, |
| ] |
| readme = "README.md" |
| license = { text = "CC BY-NC 4.0" } |
| requires-python = ">=3.9.0" |
| classifiers = [ |
| "Development Status :: 3 - Alpha", |
| "Programming Language :: Python :: 3", |
| "Operating System :: OS Independent" |
| ] |
| |
| |
| dependencies = [ |
| ] |
|
|
| [project.optional-dependencies] |
| |
| dev = [ |
| ] |
|
|
| [project.scripts] |
| |
|
|
| [tool.setuptools.packages.find] |
| where = ["src"] |
| include = ["pixel3dmm*"] |
|
|