-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (55 loc) · 1.46 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
58
59
60
61
62
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
authors = [
{ name="Brénainn Woodsend", email="[email protected]" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"strictyaml",
"appdirs",
"toml",
"portalocker",
"packaging",
"termcolor >= 2.1.0",
]
description = """\
A CLI tool to convert Python packages into a wide range of Linux distributions \
packages. \
"""
license = { file="LICENSE" }
name = "polycotylus"
requires-python = ">=3.8"
readme = "README.rst"
version = "0.1.0"
[project.optional-dependencies]
test = [
"pytest>=3",
"pytest_ordered @ https://github.com/bwoodsend/pytest-ordered/archive/c86f9f460bb24b1029f6ce77feefea0e011e1b90.zip",
"coverage",
"pytest-cov",
"pillow",
"pyzstd",
"setuptools-scm",
]
[project.urls]
"homepage" = "https://github.com/bwoodsend/polycotylus"
[project.scripts]
polycotylus = "polycotylus.__main__:_console_script"
[tool.setuptools]
zip-safe = false
[tool.setuptools.packages.find]
include = ["polycotylus"]
[tool.autopep8]
max_line_length = 80
ignore = "E501,E701,E702,E703,E722,E731,E402"