forked from varietywalls/variety
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 1.14 KB
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
[build-system]
# setuptools 62.3.0 is needed for extended glob (**) in package_data
requires = ["setuptools >= 62.3.0", "setuptools-gettext"]
build-backend = "setuptools.build_meta"
[project]
name = "variety"
license = { text = "GPL-3.0-only" }
authors = [
{ name = "Peter Levi", email = "peterlevi@peterlevi.com" },
{ name = "James Lu", email = "james@overdrivenetworks.com" }
]
description = "Wallpaper changer, downloader and manager"
dynamic = ["version", "readme"]
urls = { Homepage = "https://github.com/varietywalls/variety" }
[project.scripts]
variety = "variety:main"
[tool.black]
line-length = 100
target_version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| build
| dist
)/
)
'''
[tool.setuptools.dynamic]
version = {attr = "variety_lib.varietyconfig.__version__"}
[tool.setuptools-gettext]
# Directory where .po files are located
source_dir = "po"
# Directory where the generated .mo files will be placed during build
build_dir = "variety/locale"