-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
57 lines (52 loc) · 1.74 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
[tool.poetry]
name = "iscc-cli"
version = "0.9.12"
description = "ISCC CLI - Creates ISCC Codes from Media Files"
authors = ["Titusz Pan <tp@py7.de>"]
license = "MIT"
readme = "README.md"
homepage = "https://iscc.codes/"
repository = "https://github.com/iscc/iscc-cli"
keywords = ["iscc", "media", "identifier", "blockchain", "cli", "generator"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
"Topic :: Multimedia",
"Topic :: System :: Archiving",
"Topic :: Utilities",
"Topic :: Software Development",
]
[tool.poetry.scripts]
iscc = 'iscc_cli.cli:cli'
[tool.poetry.dependencies]
python = "^3.6"
click = "^7.0"
iscc = "1.0.5"
click-default-group = "^1.2"
colorama = "^0.4"
imageio-ffmpeg = "^0.4"
lxml = "^4.4"
mobi = "^0"
requests = "^2.23.0"
python-magic-bin = { version = "^0.4.14", markers = "sys_platform == 'win32' or sys_platform == 'darwin'" }
python-magic = { version = "^0.4.22", markers = "sys_platform == 'linux'" }
[tool.poetry.dev-dependencies]
pytest = "^5.0"
black = { version = "^19.10b0", python = "^3.6" }
pyinstaller = "^3.4"
pywin32-ctypes = { version = "0.2.0", markers = "sys_platform == 'win32'" }
pefile = { version = "2019.4.18", markers = "sys_platform == 'win32'" }
pytest-ordering = "^0.6"
[build-system]
requires = ["poetry==1.0.5"]
build-backend = "poetry.core.masonry.api"