-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 764 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 764 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "repo_reader_sancherepan"
version = "0.3.3"
authors = [
{ name="SAnCherepan", email="sivkinpunk@gmail.com" },
]
description = "A small example package for reading basic GitHub repo data"
license = {file = "LICENSE.md"}
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License"
]
dependencies = [
"requests~=2.28",
"pytest~=7.0",
"requests-mock~=1.9",
]
[project.urls]
"Homepage" = "https://github.com/sancherepan/test-code"
[project.scripts]
read-repos = "repo_reader_sancherepan.print_repos_info:main"