forked from github/contributors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (38 loc) · 1.06 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
46
47
48
49
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
[build-system]
requires = [ "setuptools>=60", "setuptools-scm>=8" ]
[project]
name = "contributors"
description = "A package to get contributor information."
keywords = [ "github" ]
license = { file = "LICENSE" }
authors = [
{ name = "HCookie", email = "[email protected]" },
]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dynamic = [ "version" ]
dependencies = [
"github3.py==4.0.1",
"python-dotenv==1.0.1",
"requests==2.32.3",
]
optional-dependencies.all = [ ]
optional-dependencies.tests = [
"black==24.10.0",
"flake8==7.1.1",
"mypy==1.11.2",
"mypy-extensions==1.0.0",
"pylint==3.3.1",
"pytest==8.3.3",
"pytest-cov==5.0.0",
"types-requests==2.32.0.20240914",
]