-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (44 loc) · 1.03 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
[project]
name = "collect_coordinator"
version = "3.6.2"
authors = [{name="Some Engineering Inc."}]
description = "Keeps all the things."
license = {file="LICENSE"}
urls = {"Homepage" = "https://fix.security"}
requires-python = ">=3.9"
classifiers = [ "Programming Language :: Python :: 3" ]
readme = {file="README.md", content-type="text/markdown"}
dependencies = [
"fixcloudutils[redis, prometheus] >= 1.7.1",
"kubernetes-asyncio",
"attrs",
"cattrs",
"bitmath",
"redis",
"arq"
]
[project.optional-dependencies]
test = [
"black",
"coverage",
"flake8",
"hypothesis",
"mypy",
"pep8-naming",
"pip-tools",
"pylint",
"pytest",
"pytest-asyncio",
"pytest-cov",
"tox",
# all type shed stubs
"types-pyOpenSSL",
"types-pytz",
"types-requests",
"types-setuptools",
]
[project.scripts]
collect_coordinator = "collect_coordinator.__main__:main"
[build-system]
requires = ["setuptools>=67.8.0", "wheel>=0.40.0", "build>=0.10.0"]
build-backend = "setuptools.build_meta"