forked from tfeldmann/organize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
102 lines (91 loc) · 2.37 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[tool.poetry]
name = "organize-tool"
version = "2.4.0"
description = "The file management automation tool"
packages = [{ include = "organize" }]
authors = ["Thomas Feldmann <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tfeldmann/organize"
documentation = "https://organize.readthedocs.io"
keywords = [
"file",
"management",
"automation",
"tool",
"organization",
"rules",
"yaml",
]
classifiers = [
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
]
[tool.poetry.scripts]
organize = "organize.cli:cli"
[tool.poetry.dependencies]
python = "^3.6.2"
fs = ">=2.4.16"
rich = "^12.0.0"
PyYAML = "^6.0"
Send2Trash = { version = "^1.8.0", extras = ["nativeLib"] }
ExifRead = "^3.0.0"
textract = { version = "^1.6.5", optional = true }
simplematch = "^1.3"
macos-tags = { version = "^1.5.1", markers = "sys_platform == 'darwin'" }
schema = "^0.7.5"
Jinja2 = "3.0.3"
click = "^8.0.3"
# must be in main dependencies for readthedocs.
mkdocs = { version = "^1.2.3", optional = true }
mkdocstrings = { version = "^0.17.0", optional = true }
mkdocs-include-markdown-plugin = { version = "^3.2.3", optional = true }
mkdocs-autorefs = { version = "^0.3.1", optional = true }
[tool.poetry.extras]
textract = ["textract"]
docs = [
"mkdocs",
"mkdocstrings",
"mkdocs-include-markdown-plugin",
"mkdocs-autorefs",
]
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
mypy = "^0.971"
requests = "^2.27.1"
types-PyYAML = "^6.0.3"
coverage = "^5"
pytest-cov = "^3.0.0"
[tool.coverage.run]
source = ['organize']
[tool.mypy]
python_version = "3.6"
[[tool.mypy.overrides]]
module = [
"schema",
"simplematch",
"appdirs",
"send2trash",
"exifread",
"textract",
"requests",
"macos_tags",
]
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = "--doctest-modules"
testpaths = ["tests", "organize"]
norecursedirs = ["tests/todo", "organize/filters", ".configs"]
[tool.isort]
profile = "black"
skip_gitignore = true
line_length = 88
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"