-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (50 loc) · 1.67 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
[build-system]
requires = ["poetry-core>=1.5.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "hug"
src_paths = ["tarraz"]
line_length = 88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
default_section = "THIRDPARTY"
known_first_party = "tarraz"
[tool.poetry]
name = "tarraz"
version = "1.2.1"
description = "A cross-stitch image generator. Generates a cross stitch pattern given by a user and generates a DMC colored pattern."
authors = ["Ahmed Jazzar <ahmed@nitfe.com>"]
maintainers = []
license = "GNU Affero General Public License v3"
readme = "README.md"
packages = [{ include = "tarraz" }]
homepage = "https://www.nitfe.com/"
repository = "https://github.com/nitfe/tarraz.git"
documentation = "https://github.com/nitfe/tarraz/blob/main/README.md"
keywords = ["cross-stitch", "pattern", "stitch", "DMC"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[tool.poetry.urls]
Issues = "https://github.com/nitfe/tarraz/issues"
Changelog = "https://github.com/nitfe/tarraz/releases"
# Requirements
[tool.poetry.dependencies]
python = ">=3.8"
pillow = ">=9.5.0"
[tool.poetry.dev-dependencies]
pre-commit = { version = "*" }
# Entry point
[tool.poetry.plugins.console_scripts]
"tarraz" = "tarraz.main:main"