-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.1 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pydepsdev"
version = "0.1.2"
authors = [
{ name = "Robert-André Mauchin", email = "[email protected]" }
]
description = "A Python library for interacting with Deps.dev API"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
keywords = ["api", "deps.dev"]
classifiers = [
"Topic :: Software Development :: Libraries",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Developers"
]
dependencies = [
"aiohttp"
]
[project.urls]
"Homepage"= "https://github.com/eclipseo/pydepsdev"
"Repository" = "https://github.com/eclipseo/pydepsdev.git"
"Bug Tracker" = "https://github.com/eclipseo/pydepsdev/issues"
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py38, py39, py310, py311, lint
[testenv]
deps = pytest >= 3.0.0, aioresponses, pytest-asyncio
commands = pytest
[testenv:lint]
deps = black
commands = black pydepsdev
"""