-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (36 loc) · 973 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[project]
name = "ghpypi"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.9 <3.13"
[tool.poetry]
name = "ghpypi"
version = "0.0.0" # DO NOT CHANGE -- set during build
description = "A custom package index generator."
authors = ["Paul Lockaby <paul@paullockaby.com>"]
packages = [{include = "ghpypi", from = "src"}]
[tool.poetry.scripts]
ghpypi = "ghpypi:main"
[tool.poetry.dependencies]
python = "^3.9"
PyGithub = "^2.1.1"
distlib = "^0.3.7"
Jinja2 = "^3.1.2"
packaging = "^24.0"
atomicwrites = "^1.4.1"
requests = "^2.31.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-cov = "^6.0.0"
pytest-mock = "^3.11.1"
pytest-mypy = "^0.10.3"
# mypy dependencies
types-requests = "^2.31.0.8"
types-atomicwrites = "^1.4.5.1"
responses = "^0.25.0"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"