-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
22 lines (17 loc) · 857 Bytes
/
pyproject.toml
File metadata and controls
22 lines (17 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[project]
name = "myproject"
version = "0.1.0"
authors = [{name = "Daniel Hollarek", email = "daniel.hollarek@googlemail.com"}]
description = "A very good project indeed"
readme = "readme.md"
dependencies = []
#dependencies = ["holytools @ git+https://git@github.com/Somerandomguy10111/holytools"]
#dependencies = ["holytools @ git+ssh://git@github.com/Somerandomguy10111/holytools", pkg2, pkg3]
[project.optional-dependencies]
test = ["holytools"]
[tool.setuptools.packages.find]
include = ["myproject*"] # Only include "myproject" folder in find_package process
[project.scripts]
cred = "myproject.configs.cred:main" # Use cred in CLI to execute myproject.configs.cred:main
[tool.setuptools.package-data]
"myproject.fileIO.examples" = ["*", '*/*', '*/*/*'] # Include all non .py files in myproject.file.examples including sub-dirs and sub-sub dirs