-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (54 loc) · 1.43 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
54
55
56
57
58
59
60
61
62
[tool.poetry]
name = "fmover"
version = "0.1.0"
description = "Move files based on file properties and given criteria"
license = "MIT"
readme = "README.md"
authors = ["Ephraim Siegfried <[email protected]>",]
repository="https://github.com/EphraimSiegfried/fmover"
keywords = ["filemanager","filemover","mover", "fileorganizer"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Desktop Environment :: File Managers",
"Topic :: Utilities",
]
packages = [
{ include = "fmover", from = "src" },
]
[tool.poetry.dependencies]
python= ">=3.7.2,<4.0"
appdirs = "^1.4.4"
notify-py = "^0.3.38"
[tool.poetry.scripts]
fmover = "fmover.cli:main"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
tox = "^4.0.12"
pylint = "^2.15.9"
black = "^22.12.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.tox]
legacy_tox_ini = """
[tox]
min_version = 4.0
env_list =
py{37,38,39,310}
[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
[testenv]
deps = pytest
commands = pytest
"""