forked from vidstige/ar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 1006 Bytes
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 1006 Bytes
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
[project]
name = "ar"
dynamic = ['version']
requires-python = ">=3.8"
authors = [
{name = "Samuel Carlsson", email = "samuel.carlsson@gmail.com"},
]
description = "Access ar archive files (.a)!"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["ar", "archive", "library", "extract"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: Apache Software License",
]
[project.optional-dependencies]
dev = [
"pylint",
"mypy",
]
test = [
"pytest ~=7.4.4",
]
[project.urls]
Repository = "https://github.com/vidstige/ar/"
"Bug Tracker" = "https://github.com/vidstige/ar/issues"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"