-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (47 loc) · 1.22 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
49
50
51
52
53
[build-system]
requires = [
"setuptools>=45",
"setuptools_scm[toml]>=6.2",
"versioneer[toml]==0.29",
"wheel",
"sphinx",
]
build-backend = "setuptools.build_meta"
[project]
name = "phrugal"
description = "A tool for efficient multi-image printing with borders"
authors = [{ name = "Martin Demling", email = "[email protected]" }]
readme = { file = 'README.md', content-type = 'text/markdown' }
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
]
requires-python = ">= 3.7" # one reason is guaranteed behavior of odering in dict
dependencies = [
"Pillow>=8.0.0",
"exifread>=3.0",
"geopy>=2.4.1",
]
[project.optional-dependencies]
dev = [
"black",
"flake8",
"coverage",
"sphinx",
"sphinx-rtd-theme",
]
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "src/phrugal/_version.py"
versionfile_build = "phrugal/_version.py"
tag_prefix = ""
parentdir_prefix = "phrugal"
[project.scripts]
phrugal = "phrugal.cli:run_cli"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]