-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
30 lines (27 loc) · 851 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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "autoslot"
author = "Caleb Hattingh"
author-email = "caleb.hattingh@gmail.com"
home-page = "http://pythonomicon.com"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python",
"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",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent"
]
description-file = "README.rst"
[tool.flit.metadata.requires-extra]
dev = [
"pytest",
"coverage",
]