-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
36 lines (33 loc) · 994 Bytes
/
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
[tool.poetry]
name = "iscc"
version = "1.0.5"
description = "ISCC: Reference Implementation"
authors = ["Titusz Pan <[email protected]>"]
license="BSD 2-clause"
readme = "README.md"
homepage = "https://iscc.codes/"
repository = "https://github.com/iscc/iscc-specs"
keywords=["iscc", "identifier", "media", "content", "hash", "blockchain", "similarity"]
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
]
[tool.poetry.dependencies]
python = "^3.5"
xxhash = "^1"
Pillow = "^6"
mkdocs-redirects = "^1.0.0"
[tool.poetry.dev-dependencies]
pytest = "^5"
mkdocs = "^1"
mkdocs-material = "^4"
mkdocs-minify-plugin = "^0"
mkdocs-git-revision-date-localized-plugin = "^0"
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"