-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
48 lines (42 loc) · 1.76 KB
/
pyproject.toml
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
45
46
47
48
[tool.poetry]
name = "onboardme"
version = "1.11.0"
description = "Install dot files and packages, including a base mode with sensible defaults to run on most computers running Debian based distros or macOS."
authors = [
"Jesse Hitch <[email protected]>",
"Max Roby <[email protected]>"
]
license = "AGPL-3.0-or-later"
readme = "README.md"
documentation = "https://jessebot.github.io/onboardme/onboardme"
repository = "http://github.com/jessebot/onboardme"
keywords = ["onboardme", "onboarding", "desktop-setup", "development-environment"]
classifiers = ["Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Intended Audience :: End Users/Desktop",
"Topic :: System :: Installation/Setup",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)"]
packages = [{include = "onboardme"}]
include = ["onboardme/scripts/update_apt_sources.sh"]
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
click = "^8.1"
rich = "^13.9"
PyYAML = "^6.0"
GitPython = "^3.1"
wget = "^3.2"
xdg-base-dirs = "^6.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.0"
[tool.poetry.plugins."onboardme.application.plugin"]
"onboardme" = "onboardme:main"
[tool.poetry.scripts]
onboardme = 'onboardme:main'
[tool.poetry.urls]
"Bug Tracker" = "http://github.com/jessebot/onboardme/issues"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"