| |
| |
| [build-system] |
| |
| requires = ["hatchling"] |
| |
| build-backend = "hatchling.build" |
|
|
| |
| |
| [project] |
| |
| name = "Multi-view" |
| |
| |
| version = "0.1.0" |
| |
| description = "Hello world" |
| |
| readme = "README.md" |
| |
| requires-python = ">=3.10" |
| |
| license = { text = "MIT" } |
| |
| authors = [ |
| { name = "qizipeng", email = "qizipeng@baidu.com" } |
| ] |
| |
| keywords = ["baidu", "demo"] |
| |
| |
| classifiers = [ |
| "Private :: Do Not Upload", |
| "Programming Language :: Python", |
| "Programming Language :: Python :: 3", |
| "Programming Language :: Python :: 3.10" |
| ] |
| |
| dependencies = [ |
| "build>=1.0.3" |
| ] |
|
|
| |
| [project.optional-dependencies] |
| |
| test = [ |
| "pytest", |
| "mock" |
| ] |
|
|
| |
| [project.urls] |
| |
| Homepage = "http://icode.baidu.com/repos/baidu/personal-code/Multi-view/tree/master" |
| |
| Changelog = "CHANGELOG.md" |
|
|
| |
| [project.scripts] |
| |
| Multi-view = "multi_view.cmdline:main" |
|
|
| |
| [tool.hatch.build] |
| |
| packages = ["multi_view"] |
| |
| |
| include = [ |
| "multi_view/conf/*", |
| "multi_view/data/*" |
| ] |
|
|
| |
| [tool.hatch.build.targets.wheel] |
| |
| packages = ["multi_view"] |
| |
| output-dir = "output/dist" |
|
|
| |
| [tool.hatch.build.targets.sdist] |
| |
| output-dir = "output/dist" |
|
|