-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
31 lines (27 loc) · 880 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
[tool.poetry]
name = "pymarker"
version = "PLACE_HOLDER_VERSION"
description = "A python package to generate AR markers and patterns based on input images"
authors = ["Pablo Silva <pablodiegoss@hotmail.com>"]
readme = "README.md"
homepage = "https://github.com/pablodiegoss/pymarker"
repository = "https://github.com/pablodiegoss/pymarker"
keywords = ["AR", "pattern", "markers", "jandig", "hiro"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
]
packages = [
{ include = "pymarker" }
]
[tool.poetry.dependencies]
python = "^3.5"
click = "^7.1.1"
pillow = "^7.1.0"
[tool.poetry.scripts]
pymarker = "pymarker.cli:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"