-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (38 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
45 lines (38 loc) · 1.09 KB
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
[project]
name = "ghpypi"
version = "0.0.0" # DO NOT CHANGE -- set during build
description = "A custom package index generator."
authors = [{name = "Paul Lockaby", email = "paul@paullockaby.com"}]
readme = "README.md"
license-files = ["LICENSE"]
requires-python = ">=3.9"
dynamic = ["dependencies"]
[project.scripts]
ghpypi = "ghpypi:main"
[tool.poetry]
packages = [{include = "ghpypi", from = "src"}]
# these are deprecated but necessary for dependabot
name = "ghpypi"
version = "0.0.0" # DO NOT CHANGE -- set during build
description = "A custom package index generator."
authors = ["Paul Lockaby <paul@paullockaby.com>"]
[tool.poetry.dependencies]
python = "^3.12"
PyGithub = "^2.1.1"
distlib = "^0.4.0"
Jinja2 = "^3.1.2"
packaging = "^26.0"
atomicwrites = "^1.4.1"
requests = "^2.31.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-cov = "^7.0.0"
pytest-mock = "^3.11.1"
pytest-mypy = "^1.0.1"
# mypy dependencies
types-requests = "^2.31.0.8"
types-atomicwrites = "^1.4.5.1"
responses = "^0.26.0"
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"