-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (30 loc) · 1.04 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gitbulk"
description = "Manage user teams for classroom and insitutions with Git remote API calls."
keywords = ["git", "GitHub", "GitLab"]
classifiers = ["Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: Utilities"
]
requires-python = ">=3.10"
dynamic = ["readme","version"]
dependencies = ["pygithub >= 1.53", "pandas", "openpyxl"]
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
version = {attr = "gitbulk.__version__"}
[project.optional-dependencies]
tests = ["pytest"]
lint = ["flake8", "flake8-bugbear", "flake8-builtins", "flake8-blind-except",
"mypy", "types-requests", "pandas-stubs"]
[tool.black]
line-length = 100
[tool.mypy]
files = ["src/", "Github/"]
ignore_missing_imports = true