-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 825 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (28 loc) · 825 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
[tool.poetry]
name = "auto-everything"
version = "4.4"
description = "do automate things on Linux"
authors = ["yingshaoxo <yingshaoxo@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "auto_everything"}]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = "^3.10"
#[tool.poetry.group.all]
#optional = true
#
#[tool.poetry.group.all.dependencies]
#pytest = "^7.2.0"
#ipykernel = "^6.19.2"
#
#[tool.poetry.group.dev.dependencies]
#pylint = "^3.0.1"
#pytest = "^7.4.2"
[tool.poetry.data]
example = "./example"
[tool.poetry.scripts]
hi = "auto_everything._command_line_interface:_hi" # You can call 'hi' in everywhere from your terminal after you install this package
auto_everything = "auto_everything._command_line_interface:main"