-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
35 lines (32 loc) · 1.02 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
[project]
name = "OctoPrint-Setuptools"
version = "1.0.3"
description = "Setuptools helpers for installing OctoPrint & OctoPrint plugins"
authors = [
{name = "Gina Haeussge", email = "[email protected]"}, # ASCII to work around pypa/wheel#488
]
readme = "README.md"
license = {text = "AGPLv3"}
requires-python = ">=3.7,<4"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.urls]
homepage = "https://github.com/OctoPrint/OctoPrint-Setuptools"
[build-system]
requires = [
"setuptools>=40.8.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 90
include = '\.pyi?$'