forked from tfeldmann/organize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (50 loc) · 1.44 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
[tool.poetry]
name = "organize-tool"
version = "1.10.1"
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:main"
[tool.poetry.dependencies]
python = "^3.6"
appdirs = "^1.4.4"
docopt = "^0.6.2"
PyYAML = "^5.4.1"
Send2Trash = "^1.5.0"
colorama = "^0.4.4"
exifread = "^2.1"
textract = { version = "^1.6.3", optional = true }
pendulum = "^2.0.5"
simplematch = "^1.3"
macos-tags = { version = "^1.5.1", markers = "sys_platform == 'darwin'"}
[tool.poetry.extras]
textract = ["textract"]
[tool.poetry.dev-dependencies]
pytest = "^4.6"
pylint = "^2.3"
ipdb = "^0.12.0"
sphinx = "^3.1.0"
sphinx-rtd-theme = "^0.5.2"
mypy = "^0.812"
flake8 = "^3.9.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"