-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
36 lines (31 loc) · 952 Bytes
/
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
[tool.poetry]
name = "freshpaper"
version = "1.2.2"
description = "Program to automatically set Bing's `Photo of the day` as your Desktop's wallpaper."
authors = ["Rohit Gupta <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.rst"
homepage = "https://github.com/guptarohit/freshpaper"
repository = "https://github.com/guptarohit/freshpaper"
keywords = ["wallpaper changer", "wallpaper", "bing", "bing wallpaper", "nasa-apod"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
]
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.6"
pillow = "^7.0"
click = "*"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
[tool.poetry.scripts]
freshpaper = "freshpaper:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"