-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (48 loc) · 1.1 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
[build-system]
requires = [
"setuptools==65.4.1",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = [
"argocd",
"argocd.services"
]
[project]
name = "argocd"
version = "0.6.0"
authors = [
{ name = "Mayank Pathak", email = "[email protected]"}
]
description = "Python client for ArgoCD"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed"
]
dependencies = [
"requests==2.28.1"
]
[project.urls]
"Homepage" = "https://github.com/onlinejudge95/argopy"
"Bug Tracker" = "https://github.com/onlinejudge95/argopy/issues"
[tool.coverage.run]
branch = true
omit = [
"*/__init__.py",
"*/config.py"
]
[tool.coverage.report]
fail_under = 95.00
precision = 2
show_missing = true
[tool.coverage.html]
directory = "htmlcov"
[tool.coverage.xml]
output = "coverage.xml"