-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
58 lines (53 loc) · 1.29 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
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["setuptools", "wheel"]
[project]
name = "crowdgit"
version = "0.0.1"
description = "Crowd.dev git integration for the Linux Foundation"
readme = "README.md"
authors = [
{ name = "Juan Reyero", email="juan@juanreyero.com" }
]
requires-python = ">=3.10"
license = { file="LICENSE" }
dependencies = [
"requests >= 2.32.3",
"tqdm",
"fuzzywuzzy",
"python-Levenshtein",
"boto3 >= 1.35.18",
"python-json-logger",
"python-dotenv >= 1.0.1",
"gitpython",
"fastapi[standard]",
"asyncio",
"confluent_kafka",
"openai >= 1.45.0",
"prettytable >= 3.11.0",
"python-slugify >= 8.0.4",
"asyncpg"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
dev = [
"jedi >= 0.18.1",
"pylint >= 2.13.9",
"pytest >= 7.0.0",
"yapf >= 0.32.0"
]
[project.scripts]
crowd-git-ingest = "crowdgit.ingest:main"
crowd-git-bad-commits = "crowdgit.get_bad_commits:main"
crowd-git-maintainers = "crowdgit.maintainers:main"
[tool.pytest.ini_options]
addopts = "--doctest-modules --ignore=setup.py --ignore=build --ignore=doc --ignore=flymake"
pythonpath = [
"."
]
[tool.black]
line-length = 99
target-version = ['py310']